springboot配置thymeleaf
时间: 2023-04-24 22:00:56 浏览: 108
springboot + thymeleaf配置
Spring Boot 配置 Thymeleaf 需要以下步骤:
1. 添加 Thymeleaf 依赖
在 pom.xml 文件中添加以下依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
2. 配置 Thymeleaf 模板引擎
在 application.properties 文件中添加以下配置:
```
# Thymeleaf 模板引擎配置
spring.thymeleaf.mode=HTML
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.cache=false
```
3. 创建 Thymeleaf 模板文件
在 src/main/resources/templates 目录下创建 Thymeleaf 模板文件,例如 index.html。
4. 编写 Thymeleaf 模板文件
在 index.html 文件中编写 Thymeleaf 模板代码,例如:
```
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Spring Boot Thymeleaf Demo</title>
</head>
<body>
<h1 th:text="${message}"></h1>
</body>
</html>
```
5. 编写 Controller
在 Controller 中添加以下代码:
```
@Controller
public class DemoController {
@GetMapping("/")
public String index(Model model) {
model.addAttribute("message", "Hello, Thymeleaf!");
return "index";
}
}
```
6. 运行应用程序
运行应用程序并访问 http://localhost:808/,即可看到 Thymeleaf 模板渲染的页面。
以上就是 Spring Boot 配置 Thymeleaf 的步骤。
阅读全文