package sample.jsp; import java.util.Date; import java.util.Map; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class WelcomeController { @Value("${application.message:Hello World}") private String message = "Hello World"; @RequestMapping("/") public String welcome(Map model) { model.put("time", new Date()); model.put("message", message ); return "welcome"; } }