新搭的项目中添加thymeleaf模板展示页面
报404
于是去检查了一下配置文件
依赖没问题
测试的Controller
页面的位置
配置文件
#page
thymelea模板配置
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
#热部署文件,页面不产生缓存,及时更新
spring.thymeleaf.cache=false
spring.resources.chain.strategy.content.enabled=true
spring.resources.chain.strategy.content.paths=/**
奇了个怪,检查两边没什么问题,去看下报错。原来是找不到资源文件
去class下翻找果然没有资源文件
还是重新查看配置文件
原来是同事改造https的时候加了配置。噫!我居然不知道。
加上一行就好了。
<include>**/*.html</include>