Thymeleaf模板引擎在Spring Boot中的应用非常广泛,它可以帮助我们轻松地创建动态Web页面。下面是一些关于如何在Spring Boot中使用Thymeleaf模板引擎的基本步骤:
首先,在你的pom.xml
文件中添加Thymeleaf的依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
在application.properties
或application.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
在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的特性。
创建一个控制器类,用于处理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";
}
}
启动你的Spring Boot应用,然后在浏览器中访问http://localhost:8080/
,你将看到Thymeleaf模板引擎渲染的页面。
以上就是在Spring Boot中使用Thymeleaf模板引擎的基本步骤。你可以根据实际需求,进一步探索Thymeleaf的其他特性,如条件判断、循环、表单等。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。