springboot中添加Thymeleaf
时间: 2023-11-16 12:43:19 浏览: 119
springboot + thymeleaf配置
在Spring Boot中添加Thymeleaf的步骤如下:
1. 首先,通过org.springframework.boot.autoconfigure.thymeleaf包对Thymeleaf进行自动配置。
2. 其次,在application.properties配置文件中对Thymeleaf进行相关的配置修改。可以修改以下参数:
- 设置端口号:server.port=8082
- 设置Thymeleaf的相关参数:
- 设置模板文件的前缀:spring.thymeleaf.prefix=classpath:/templates/
- 设置模板文件的后缀:spring.thymeleaf.suffix=.html
- 设置Thymeleaf的渲染模式:spring.thymeleaf.mode=HTML5
- 设置Thymeleaf的编码方式:spring.thymeleaf.encoding=UTF-8
- 设置Thymeleaf的Content-Type:spring.thymeleaf.servlet.content-type=text/html
- 在开发时关闭缓存:spring.thymeleaf.cache=false
[2]
请注意,以上步骤是在Spring Boot框架下简单应用Thymeleaf的示例,如果需要更深入的讨论和使用指导,请参考相关的Thymeleaf参考资料。
阅读全文