SpringBoot thymeleaf模板版本,thymeleaf模板更换版本

SpringBoot thymeleaf模板版本

thymeleaf模板更换版本

修改thymeleaf模板版本

================================

©Copyright 蕃薯耀 2018年3月23日

http://fanshuyao.iteye.com/

 

一、SpringBoot 使用thymeleaf模板需要引用依赖的Jar包:

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

 

二、SpringBoot中thymeleaf的默认版本为:1.5.10.RELEAS

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-validation</artifactId>
  <version>1.5.10.RELEASE</version>
</dependency>

 

三、修改thymeleaf模板的版本

properties标签加入如下配置:

<properties>
  <thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>
  <thymeleaf-layout-dialect.version>2.0.4</thymeleaf-layout-dialect.version>
</properties>

 示例如下:

<properties>
  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  <java.version>1.8</java.version>
  <thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>
  <thymeleaf-layout-dialect.version>2.0.4</thymeleaf-layout-dialect.version>
</properties>

 

注意:thymeleaf 版本3已经重写,thymeleaf-layout-dialect必须为2以上的版本

 

 

================================

©Copyright 蕃薯耀 2018年3月23日

http://fanshuyao.iteye.com/

猜你喜欢

转载自fanshuyao.iteye.com/blog/2414380