springboot集成thymeleaf模板指向外部页面的问题

springboot项目打成jar包以后,业务需求想把页面放到jar包外部,方便后续的替换等操作。

1.在配置文件中添加配置

springboot集成thymeleaf模板指向外部页面的问题

spring.mvc.static-path-pattern=/**
spring.mvc.view.prefix=/
#配置静态资源,相对路径,必须和jar包在同一目录,file后面的.要写,要写,要写,重要的事说3遍
spring.resources.static-locations=file:./templates/
#配置html资源,相对路径,必须和jar包在同一目录,file后面的.要写,要写,要写,重要的事说3遍
spring.thymeleaf.prefix=file:./templates/
#后缀说明是html页面
spring.thymeleaf.suffix=.html
#是否使用缓存
spring.thymeleaf.cache=false

本地路径如图:java -jar ***.jar 启动jar包即可
springboot集成thymeleaf模板指向外部页面的问题

上一篇:Spring Boot 整合 freemarker 和 thymeleaf 模板引擎


下一篇:thymeleaf自动刷新页面