SpringBoot整合Thymeleaf

一、创建工程并选择起步依赖

在这里插入图片描述

二、编写Controller控制器

@Controller
public class MyController {
    @RequestMapping("/message")
    public String meeeage(Model model){
        model.addAttribute("data","Springboot集成Thymeleaf");
        return "message";
    }
}

三、在templates文件夹下创建html文件

<!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>

四、关闭Thymeleaf缓存并开启资源更新

在springboot核心配置文件中写

#配置Thymeleaf模板引擎的前后缀(可不写)
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
#关闭Thymeleaf模板引擎缓存
spring.thymeleaf.cache=false

开启资源更新
在这里插入图片描述

测试:

在这里插入图片描述
在页面上输出的是data而不是标签的内容
在message.html文件里修改代码后刷新浏览器(不重启服务器)
在这里插入图片描述
页面的内容也会更新
在这里插入图片描述

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值