浅谈spring boot使用thymeleaf版本的问题
程序员文章站
2022-07-30 14:31:22
spring boot使用thymeleaf版本问题spring boot默认使用的是thymeleaf的2版本,这个版本比较低,有些功能不支持,需要切换成3版本在properties中加入
spring boot使用thymeleaf版本问题
spring boot默认使用的是thymeleaf的2版本,这个版本比较低,有些功能不支持,需要切换成3版本
在properties中加入
<thymeleaf.version>3.0.9.release</thymeleaf.version> <thymeleaf-layout-dialect.version>2.1.1</thymeleaf-layout-dialect.version>
thymeleaf在maven的版本配置
<properties> <thymeleaf.version>3.0.11.release</thymeleaf.version> <thymeleaf-layout-dialect.version>2.1.1</thymeleaf-layout-dialect.version> </properties>
<dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-thymeleaf</artifactid> </dependency>
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。
推荐阅读
-
Spring Boot使用RestTemplate消费REST服务的几个问题记录
-
Spring Boot中使用Actuator的/info端点输出Git版本信息
-
Spring Boot使用RestTemplate消费REST服务的几个问题记录
-
Spring Boot 与 kotlin 使用Thymeleaf模板引擎渲染web视图的方法
-
spring boot使用i18n时properties文件中文乱码问题的解决方法
-
spring boot使用thymeleaf为模板的基本步骤介绍
-
Spring Boot 与 kotlin 使用Thymeleaf模板引擎渲染web视图的方法
-
spring boot使用thymeleaf模板的方法详解
-
解决Intellij IDEA 使用Spring-boot-devTools无效的问题
-
spring boot使用thymeleaf模板的方法详解