package com.example.demo; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class DemoController { @GetMapping("/") public String hello() { String title = System.getenv("TITLE"); String a1url = System.getenv("A1URL"); String page = "" + "

" + title + "

" + "

Navigate to Application 1

" + ""; return String.format(page); } }