运行springboot项目使用Thymeleaf
时间: 2023-12-22 15:03:32 浏览: 95
基于springboot+Thymeleaf的选课系统(完美运行,包含数据库源代码和详细文档,可远程调试)
5星 · 资源好评率100%
要在Spring Boot项目中使用Thymeleaf,需要进行以下步骤:
1. 在pom.xml文件中添加Thymeleaf的依赖
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
2. 在application.properties中添加Thymeleaf的配置
```
# 模板文件所在目录
spring.thymeleaf.prefix=classpath:/templates/
# 后缀
spring.thymeleaf.suffix=.html
# 是否开启缓存
spring.thymeleaf.cache=false
# 字符编码
spring.thymeleaf.encoding=UTF-8
```
3. 在Controller中添加请求处理方法并返回对应的Thymeleaf模板名称
```
@Controller
public class MyController {
@RequestMapping("/index")
public String index() {
return "index";
}
}
```
4. 在resources/templates下创建对应的Thymeleaf模板文件
阅读全文