踩坑记01-thymeleaf报错之class中无资源

新搭的项目中添加thymeleaf模板展示页面
报404
踩坑记01-thymeleaf报错之class中无资源
于是去检查了一下配置文件

依赖没问题
踩坑记01-thymeleaf报错之class中无资源
测试的Controller
踩坑记01-thymeleaf报错之class中无资源
页面的位置
踩坑记01-thymeleaf报错之class中无资源
配置文件

#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=/**

奇了个怪,检查两边没什么问题,去看下报错。原来是找不到资源文件

踩坑记01-thymeleaf报错之class中无资源
去class下翻找果然没有资源文件
踩坑记01-thymeleaf报错之class中无资源

还是重新查看配置文件
踩坑记01-thymeleaf报错之class中无资源
原来是同事改造https的时候加了配置。噫!我居然不知道。
加上一行就好了。

  <include>**/*.html</include>
上一篇:Cglib 如何实现多重代理?


下一篇:【小程序】taro-ui-vue 小程序开发模式优化