springboot集合thymeleaf项目
时间: 2023-08-05 07:06:16 浏览: 114
spring-boot-starter-thymeleaf-2.1.7.RELEASE.jar
5星 · 资源好评率100%
Spring Boot集成Thymeleaf可以通过以下步骤完成:
1. 在项目的pom.xml文件中添加Thymeleaf的依赖项。可以使用以下代码片段添加Thymeleaf starter依赖:
```
<!-- thymeleaf 相关依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
这将自动导入Thymeleaf的相关依赖项。
2. 在application.properties文件中添加Thymeleaf的相关配置。可以使用以下代码片段添加配置:
```
# 关闭Thymeleaf的缓存,方便开发过程中无需重启
spring.thymeleaf.cache=false
# 设置Thymeleaf页面的编码
spring.thymeleaf.encoding=UTF-8
# 设置Thymeleaf页面的后缀
spring.thymeleaf.suffix=.html
# 设置Thymeleaf页面的存储路径
spring.thymeleaf.prefix=classpath:/templates/
```
这些配置将确保Thymeleaf与Spring Boot的自动配置完美整合。
3. 在项目中创建Thymeleaf模板文件。可以将模板文件存储在src/main/resources/templates目录下。使用Thymeleaf的语法编写模板文件,可以在模板中使用动态数据和表达式。
通过以上步骤,你就可以在Spring Boot项目中成功集成Thymeleaf,并使用Thymeleaf作为模板引擎来开发你的项目了。
#### 引用[.reference_title]
- *1* *3* [SpringBoot 整合Thymeleaf教程及使用](https://blog.csdn.net/yangyifan0/article/details/128069902)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* [SpringBoot集成Thymeleaf](https://blog.csdn.net/yinyin_xiao/article/details/125072715)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文