springboot 整合themeleaf无法跳转页面

1、由于springboot2.3.2中自带的spring5,我这里用的java8,不指定thymeleaf版本情况下默认的thymeleaf版本应该是thymeleaf2。而2版本总会出现问题,我遇到的问题是访问本地html时,反应迟钝。
2、就把thymeleaf换成了版本3,然而由于是spring5,直接指定thymeleaf版本号还不行,会出错。
3、maven的pom文件中加入如下配置,区别在于红色圈中地方

<properties>
            <java.version>1.8</java.version>
            <thymeleaf-spring5.version>3.0.9.RELEASE</thymeleaf-spring5.version>
            <thymeleaf-layout-dialect.version>2.3.0</thymeleaf-layout-dialect.version>
    </properties>


springboot 整合themeleaf无法跳转页面

 

上一篇:Java实现串口通信(SpringBoot+RXTX+Thymeleaf+ElementUI)


下一篇:Thymeleaf入门