springboot24-集成Thymeleaf

1、添加依赖

2、编写controller

@Controller
public class UserController {

    @RequestMapping("/message")
    public String message(Model model){
        model.addAttribute("message", "集成模板引擎");
        return "message";
    }
}

3、编写html页面

xmlnx必须添加
th:test="${message}"可以替换掉标签内的内容

posted @ 2021-09-16 16:02  不是孩子了  阅读(8)  评论(0编辑  收藏  举报