博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringBoot thymeleaf模板版本,thymeleaf模板更换版本
阅读量:6698 次
发布时间:2019-06-25

本文共 1222 字,大约阅读时间需要 4 分钟。

SpringBoot thymeleaf模板版本

thymeleaf模板更换版本

修改thymeleaf模板版本

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

©Copyright 蕃薯耀 2018年3月27日

http://www.cnblogs.com/fanshuyao/

 

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

Xml代码  
  1. <dependency>  
  2.   <groupId>org.springframework.boot</groupId>  
  3.   <artifactId>spring-boot-starter-thymeleaf</artifactId>  
  4. </dependency>  

 

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

Java代码  
  1. <dependency>  
  2.   <groupId>org.springframework.boot</groupId>  
  3.   <artifactId>spring-boot-starter-validation</artifactId>  
  4.   <version>1.5.10.RELEASE</version>  
  5. </dependency>  

 

三、修改thymeleaf模板的版本

properties标签加入如下配置:

Java代码  
  1. <properties>  
  2.   <thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>  
  3.   <thymeleaf-layout-dialect.version>2.0.4</thymeleaf-layout-dialect.version>  
  4. </properties>  

 示例如下:

Xml代码  
  1. <properties>  
  2.   <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  
  3.   <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>  
  4.   <java.version>1.8</java.version>  
  5.   <thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>  
  6.   <thymeleaf-layout-dialect.version>2.0.4</thymeleaf-layout-dialect.version>  
  7. </properties>  

 

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

 

 

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

©Copyright 蕃薯耀 2018年3月27日

http://www.cnblogs.com/fanshuyao/

你可能感兴趣的文章
告诉你银行在年底为存储做的小动作
查看>>
函数中的apply,call入门介绍
查看>>
XCode10 swift4.2 适配遇到的坑
查看>>
分布式之数据库和缓存双写一致性方案解析
查看>>
PHP 完整实战23种设计模式
查看>>
spring cloud微服务分布式云架构 - Spring Cloud集成项目简介
查看>>
时时流量查看工具-ifsta,nload,iftop
查看>>
MySQL水平分区代理Spock Proxy(一)
查看>>
PLSQL DEVELOPER 使用技巧
查看>>
ansible常用模块
查看>>
我的友情链接
查看>>
远程客户端连接MysqL数据库太慢解决方案
查看>>
SQL Server -- SQLserver 存储过程执行错误记录到表
查看>>
POLYCOM RMX2000 激活与初始化 信令板卡初始化
查看>>
TCP协议的特性
查看>>
判断该网页是在什么设备打开。
查看>>
corosync+openais+pacemaker+web
查看>>
MAC机路由管理
查看>>
Linux—程序包安装与管理
查看>>
PXE装机+kickstart无人值守安装
查看>>