1. 程式人生 > >spring-boot-starter-thymeleaf版本問題

spring-boot-starter-thymeleaf版本問題

開發十年,就只剩下這套架構體系了! >>>   

困惑了一個小時的問題:

spring boot預設thymeleaf版本是2.1.1
<properties>
    <thymeleaf.version>3.0.2.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-starter-thymeleaf版本問題,經過查閱修改為:3.0.11.RELEASE就OK啦!
<properties>
    <thymeleaf.version>3.0.11.RELEASE</thymeleaf.version>
    <thymeleaf-layout-dialect.version>2.1.1</thymeleaf-layout-dialect.version>
</properties>

最終截圖:

相關推薦

spring-boot-starter-thymeleaf版本問題

開發十年,就只剩下這套架構體系了! >>>   

spring-boot-starter-thymeleaf對沒有結束符的HTML5標簽解析出錯

pro 標記 end 解析 沒有 開啟 span htm spa springboot 在使用thymeleaf 作為模板時,當出現未關閉標簽時,如下所示代碼,標簽沒有關閉。 <link href="plugin/layui/css/layui.css" rel="

mybatis-spring-boot-starter 1.0.1 之後的版本問題

mapper介面 @MapperScan public interface PeopleMapper { @Select("SELECT * FROM people WHERE id = #{id}") People findById(@Pa

Spring Boot Starter 的基本封裝

java aop 通過 pac ket oot foundry 支持 cto 1)spring-boot-starter這是Spring Boot的核心啟動器,包含了自動配置、日誌和YAML。 2)spring-boot-starter-amqp通過spring-rabbi

Spring BootThymeleaf

格式 驗證機制 html webapp 表單 freemark entity tac err Spring Boot幹貨系列:(四)Thymeleaf篇http://www.cnblogs.com/zheting/p/6707037.html 前言

Spring Boot使用thymeleaf模板時報異常:template might not exist or might not be accessible by any of the configured Template Resolvers

logs pla 開頭 spring 方法 temp ring mode acc 錯誤如下: template might not exist or might not be accessible by any of the configured Template R

spring-boot-starter-actuator(健康監控)配置和使用

frame maven git 追蹤 包括 屬性 per dump zookeepe 在生產環境中,需要實時或定期監控服務的可用性。Spring Boot的actuator(健康監控)功能提供了很多監控所需的接口,可以對應用系統進行配置查看、相關功能統計等。 集成:

spring-boot的helloWorld版本

open group 建議 ber schema snapshot exceptio ges hot 1.運行環境 開發工具:intellij idea JDK版本:1.8 項目管理工具:Maven 3.2.5 2.Maven Plugin管理 pom.xml配置代碼:

spring bootthymeleaf (1): 國際化

javaee 文件內容 裏的 auto 簡體 第一次 1.0 i18n 自定義顯示 在thymeleaf 裏面有個消息表達式: #{...} , 可以借此來實現國際化. 在我使用這個功能的時候, 碰到了一個問題, 按照 JavaEE開發的顛覆者 Spring Boot實戰

spring bootthymeleaf (3): 設置屬性、條件、遍歷、局部變量、優先級、內聯語法

負數 使用 cnblogs ttr price n) 原型 demo 解析結果 前面記錄了 thymeleaf 基本表達式, 這裏繼續看一下其他功能. 一. 設置屬性值 這裏的controller, html框架 還是沿用上一篇的部分. html: <div cl

Spring Boot + MyBatis + Thymeleaf實現簡單留言板應用

crud pro 點擊 htm drop lang data cati col Spring Boot + MyBatis + Thymeleaf實現簡單留言板應用 本項目主要介紹使用Spring Boot + MyBatis + Thymeleaf + Bootstrap

Spring boot集成spring-boot-starter-data-jpa環境搭建

lis ESS hiberna 構建 TP xtend 默認 location col 1、創建Spring boot項目 2、保存等待構建完成 3、增加spring-boot-starter-data-jpa、內存數據庫依賴包hsqldb

springboot2.0+dubbo-spring-boot-starter聚合項目打可執行的jar包

inf 惡心 class int reg spa 打包成 tco public springboot2.0+dubbo聚合項目打可執行的jar包 springboot2.0+dubbo-spring-boot-starter項目服務方打包和以前老版本的dubbo打包方式不

RabbiMQ基礎以及spring-boot-starter-amqp使用

outb convert net ESS XML fig vhost chan 多個 ? RabbitMQ是一種基於amq協議的消息隊列,本文主要記錄一下rabbitmq的基礎內容以及使用spring-boot-starter-amqp操作rabbitmq。 1,rabbi

實現基於redis的分散式鎖並整合spring-boot-starter

文章目錄 概述 使用 1.導包 2.寫一個實現鎖功能的service 3.檢查redis的key 4.呼叫(鎖成功) 5.呼叫(鎖失敗) 實現

spring-boot-starter-actuator 是什麼

spring-boot-starter-actuator 是什麼 一句話,actuator是監控系統健康情況的工具。 - 怎麼用? 1. 新增 POM依賴 <dependency> <groupId&g

如何開發自己的Spring Boot Starter

我們在使用 Spring Boot 的過程中,往往都是在pom.xml里加了一系列的依賴,然後啟支一個包含main方法的Application,一切就OK啦。給你我的感覺,就像是自己要動手做個菜,自己不再需要準備每一部分的原材料,直接購買包裝好的一份菜的原料,下鍋即可。 那我們詳細看下,這份「包

Spring Boot學習--spring-boot-starter-parent及starters

在官方文件的第三部分的13塊講述了引用的管理,官方推薦的是使用Maven和Gradle。 我一直在用的是maven,而且使用maven有些優勢–spring-boot-starter-parent,這個部件是maven獨有的。 這次我們從這裡開始學習。 Maven的使用者可以通過

spring boot 對於thymeleaf配置html

需要加入: <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> 然後就可以使用 <input type="hidden" th:value="${error}"

自定義spring boot starter三部曲之二:實戰開發

本文是《自定義spring boot starter三部曲》的第二篇,上一篇中我們通過學習spring cloud的starter,對spring boot的starter有了初步瞭解,也設計好了實戰內容,今天就來一起實現; 三部曲文章連結 《自定義spring boot