@Controller
public class MyController {
@RequestMapping("/message")
public String meeeage(Model model){
model.addAttribute("data","Springboot集成Thymeleaf");
return "message";
}
}
<!DOCTYPE html>
<!-- xmlns:th="http://www.thymeleaf.org" 这个是Thymeleaf的命名空间(必须要加这个) -->
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Message</title>
</head>
<body>
<!-- th:text="${data}"这里的数据内容会覆盖掉标签内的内容 -->
<h1 th:text="${data}">Hello Thymeleaf</h1>
</body>
</html>
在springboot核心配置文件中写
#配置Thymeleaf模板引擎的前后缀(可不写)
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
#关闭Thymeleaf模板引擎缓存
spring.thymeleaf.cache=false
开启资源更新
在页面上输出的是data而不是标签的内容
在message.html文件里修改代码后刷新浏览器(不重启服务器)
页面的内容也会更新
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/m0_60117382/article/details/121596508
内容来源于网络,如有侵权,请联系作者删除!