Spring Boot中Thymeleaf模板引擎使用

发布时间:2024-11-15 11:39:59 作者:小樊
来源:亿速云 阅读:78

Thymeleaf模板引擎在Spring Boot中的应用非常广泛,它可以帮助我们轻松地创建动态Web页面。下面是一些关于如何在Spring Boot中使用Thymeleaf模板引擎的基本步骤:

  1. 添加依赖

首先,在你的pom.xml文件中添加Thymeleaf的依赖:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
  1. 配置Thymeleaf

application.propertiesapplication.yml文件中配置Thymeleaf的相关属性,例如:

# application.properties
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.cache=false
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.mode=HTML

或者

# application.yml
spring:
  thymeleaf:
    prefix: classpath:/templates/
    suffix: .html
    cache: false
    encoding: UTF-8
    mode: HTML
  1. 创建模板文件

src/main/resources/templates目录下创建HTML模板文件,例如index.html

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title th:text="${title}">Title</title>
</head>
<body>
    <h1 th:text="${message}">Hello, World!</h1>
</body>
</html>

注意th命名空间的引入,它允许我们使用Thymeleaf的特性。

  1. 编写控制器

创建一个控制器类,用于处理HTTP请求并返回对应的模板名称:

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;

@Controller
public class MyController {

    @GetMapping("/")
    public String index(Model model) {
        model.addAttribute("title", "Thymeleaf示例");
        model.addAttribute("message", "欢迎使用Thymeleaf模板引擎!");
        return "index";
    }
}
  1. 运行应用

启动你的Spring Boot应用,然后在浏览器中访问http://localhost:8080/,你将看到Thymeleaf模板引擎渲染的页面。

以上就是在Spring Boot中使用Thymeleaf模板引擎的基本步骤。你可以根据实际需求,进一步探索Thymeleaf的其他特性,如条件判断、循环、表单等。

推荐阅读:
  1. SpringCloud SpringBoot mybatis分布式微服务云架构开发Web应用
  2. SpringBoot 之Thymeleaf模板

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

spring boot

上一篇:Spring Boot集成Spring Session

下一篇:Spring Boot国际化配置指南

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》