【springboot】使用thymeleaf模板

1. 导入依赖

        首先,创建一个Spring Boot项目,并添加Thymeleaf依赖。在pom.xml文件中添加以下依赖:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>

2. 创建Thymeleaf模板

        在src/main/resources目录下创建一个templates文件夹,并在其中创建一个HTML文件,例如index.html

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <title>Thymeleaf 示例</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<h1>欢迎使用Thymeleaf</h1>
<p th:text="${message}"></p>
</body>
</html>

3. 创建控制器

        创建一个控制器类,并使用模型添加message信息。

@Controller
public class TestThymeleafController {
    @GetMapping("/")
    public String index(Model model) {
        // 向模型中添加一个名为message的对象
        model.addAttribute("message", "Hello, Thymeleaf!");
        return "index";
    }
}

4. 配置文件

         application.yml

spring:
#  thymeleaf配置
  thymeleaf:
#    禁用缓存
    cache: false
#    前缀路径
    prefix: classpath:/templates/
#    后缀
    suffix: .html

        application.properties

spring.thymeleaf.cache=false
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html

5. 测试

        开启项目后,使用浏览器或工具测试thymeleaf是否生效。

ok啦.


参考链接:

SpringBoot整合Thymeleaf快速入门(附详细教程)-CSDN博客

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

睆小白

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值