Web入门
@GetMapping("/user")
public String user(ModelMap map){
map.addAttribute("name","zhang");
return "user";
}
<body>
<h1 th:text="'welcome:'+${name}"></h1>
</body>
路由映射
@RequestMapping(
value = {"/user","/user2"},
method = RequestMethod.GET
)
public String user(){
return "user";
}