淺談spring boot使用thymeleaf版本的問題
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>
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- SpringBoot的依賴管理配置
- 一篇文章帶你瞭解Java SpringBoot四大核心組件
- Spring boot應用啟動後首次訪問很慢的解決方案
- SpringBoot整合Thymeleaf與FreeMarker視圖層技術
- Spring Boot 整合 Thymeleaf 實例分享