欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Springboot中Thymeleaf外部模板

程序员文章站 2024-02-29 17:27:10
...

Spingboot项目中,默认的thymeleaf模板文件夹是在 /src/main/resources/templates,打包时后在classpath:templates下

但有时候,需要把模板放在外部,这时可以修改 application.properties 文件

# jar包同目录下的 templates 目录
spring.thymeleaf.prefix=file:templates/

正式发布的项目中,通常会开启模板缓存功能,这个时候更新外部模板不会生效
需手工清理cache

ThymeleafViewResolver.clearCache()

相关标签: web