沃尔沃问天网为委托人
@Controllerpublic class WelcomeController { @Value("${application.message}") private String message; @GetMapping("/welcome") public String welcome(Map<String, Object> model) { model.put("time", new Date().getTime()); model.put("message", this.message); return "welcome"; } @GetMapping("/test") public String test(){ return "test"; }}