package com.example.spring.hello; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller public class HelloController { @Value("${my.name}") private String name; @RequestMapping("/") @ResponseBody String home() { return "Hello " + name + "!"; } }