springboot中thymeleaf如何配置
时间: 2023-11-27 09:55:25 浏览: 68
在Spring Boot项目中使用Thymeleaf需要以下几个步骤:
1. 添加Thymeleaf依赖
在pom.xml文件中添加以下依赖:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
2. 配置Thymeleaf
在application.properties文件中添加以下配置:
```properties
# 模板文件所在目录,注意目录结尾不能带斜杠
spring.thymeleaf.prefix=classpath:/templates/
# 模板文件后缀
spring.thymeleaf.suffix=.html
# 开启缓存,开发阶段可以关闭
spring.thymeleaf.cache=false
```
3. 编写Thymeleaf模板
在`src/main/resources/templates`目录下创建HTML文件,并且使用Thymeleaf语法编写模板。例如:
```html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Thymeleaf Example</title>
</head>
<body>
<h1 th:text="${message}"></h1>
</body>
</html>
```
4. 在Controller中使用Thymeleaf
在Controller中添加`@Controller`注解,并且在处理请求的方法中将数据添加到Model中,例如:
```java
@Controller
public class MyController {
@GetMapping("/")
public String index(Model model) {
model.addAttribute("message", "Hello, Thymeleaf!");
return "index";
}
}
```
以上就是在Spring Boot中使用Thymeleaf的基本配置和使用步骤。
阅读全文