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 page = "" + "

" + title + "

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