在使用springboot配置thymeleaf的时候遇到这个错误
Error processing condition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration.resourceUrlEncodingFilter
后来发现是
<thymeleaf.version>3.0.9.RELEASE</thymeleaf.version>
<!--布局功能支持 -->
<thymeleaf-layout-dialect.version>2.2.2</thymeleaf-layout-dialect.version>
这两个配置不符合,挺诡异的,按照springboot官方文档,thymeleaf3.0以上一定要thymeleaf-layout-dialect2.0以上我之前用的并不是这两个版本,
但也符合规定,运行就会报上面的错误,我改成上面的版本号后就正常了。。。。。。
日常记录