Spring Boot(四):Thymeleaf 使用詳解

純潔的微笑發表於2019-04-12

在上篇文章Spring Boot (二):Web 綜合開發中簡單介紹了一下 Thymeleaf,這篇文章將更加全面詳細的介紹 Thymeleaf 的使用。Thymeleaf 是新一代的模板引擎,在 Spring4.0 中推薦使用 Thymeleaf 來做前端模版引擎。

Thymeleaf 介紹

簡單說,Thymeleaf 是一個跟 Velocity、FreeMarker 類似的模板引擎,它可以完全替代 JSP 。相較與其他的模板引擎,它有如下三個極吸引人的特點:

  • 1.Thymeleaf 在有網路和無網路的環境下皆可執行,即它可以讓美工在瀏覽器檢視頁面的靜態效果,也可以讓程式設計師在伺服器檢視帶資料的動態頁面效果。這是由於它支援 html 原型,然後在 html 標籤裡增加額外的屬性來達到模板+資料的展示方式。瀏覽器解釋 html 時會忽略未定義的標籤屬性,所以 Thymeleaf 的模板可以靜態地執行;當有資料返回到頁面時,Thymeleaf 標籤會動態地替換掉靜態內容,使頁面動態顯示。

  • 2.Thymeleaf 開箱即用的特性。它提供標準和 Spring 標準兩種方言,可以直接套用模板實現 JSTL、 OGNL表示式效果,避免每天套模板、該 Jstl、改標籤的困擾。同時開發人員也可以擴充套件和建立自定義的方言。

  • 3.Thymeleaf 提供 Spring 標準方言和一個與 SpringMVC 完美整合的可選模組,可以快速的實現表單繫結、屬性編輯器、國際化等功能。

標準表示式語法

它們分為四類:

  • 1.變數表示式

  • 2.選擇或星號表示式

  • 3.文字國際化表示式

  • 4.URL 表示式

變數表示式

變數表示式即 OGNL 表示式或 Spring EL 表示式(在 Spring 術語中也叫 model attributes)。如下所示:
${session.user.name}

它們將以HTML標籤的一個屬性來表示:

<span th:text="${book.author.name}">  <li th:each="book : ${books}">

選擇(星號)表示式

選擇表示式很像變數表示式,不過它們用一個預先選擇的物件來代替上下文變數容器(map)來執行,如下:
*{customer.name}

被指定的 object 由 th:object 屬性定義:

<div th:object="${book}">    ...    <span th:text="*{title}">...</span>    ...  </div>

文字國際化表示式

文字國際化表示式允許我們從一個外部檔案獲取區域文字資訊(.properties),用 Key 索引 Value,還可以提供一組引數(可選).

#{main.title}  #{message.entrycreated(${entryId})}

可以在模板檔案中找到這樣的表示式程式碼:

<table>    ...    <th th:text="#{header.address.city}">...</th>    <th th:text="#{header.address.country}">...</th>    ...  </table>

URL 表示式

URL 表示式指的是把一個有用的上下文或回話資訊新增到 URL,這個過程經常被叫做 URL 重寫。
@{/order/list}

URL還可以設定引數:
@{/order/details(id=${orderId})}

相對路徑:
@{../documents/report}

讓我們看這些表示式:

<form th:action="@{/createOrder}">  <a href="main.html" th:href="@{/main}">

變數表示式和星號表達有什麼區別嗎?

如果不考慮上下文的情況下,兩者沒有區別;星號語法評估在選定物件上表達,而不是整個上下文
什麼是選定物件?就是父標籤的值,如下:

<div th:object="${session.user}">  <p>Name: <span th:text="*{firstName}">Sebastian</span>.</p>  <p>Surname: <span th:text="*{lastName}">Pepper</span>.</p>  <p>Nationality: <span th:text="*{nationality}">Saturn</span>.</p></div>

這是完全等價於:

<div th:object="${session.user}">  <p>Name: <span th:text="${session.user.firstName}">Sebastian</span>.</p>  <p>Surname: <span th:text="${session.user.lastName}">Pepper</span>.</p>  <p>Nationality: <span th:text="${session.user.nationality}">Saturn</span>.</p></div>

當然,美元符號和星號語法可以混合使用:

  <div th:object="${session.user}">      <p>Name: <span th:text="*{firstName}">Sebastian</span>.</p>        <p>Surname: <span th:text="${session.user.lastName}">Pepper</span>.</p>      <p>Nationality: <span th:text="*{nationality}">Saturn</span>.</p>  </div>

表示式支援的語法

字面(Literals)

  • 文字文字(Text literals): 'one text','Another one!',…

  • 數字文字(Number literals): 0,34,3.0,12.3,…

  • 布林文字(Boolean literals): true,false

  • 空(Null literal): null

  • 文字標記(Literal tokens): one,sometext,main,…

文字操作(Text operations)

  • 字串連線(String concatenation): +

  • 文字替換(Literal substitutions): |Thenameis${name}|

算術運算(Arithmetic operations)

  • 二元運算子(Binary operators): +,-,*,/,%

  • 減號(單目運算子)Minus sign (unary operator): -

布林操作(Boolean operations)

  • 二元運算子(Binary operators): and,or

  • 布林否定(一元運算子)Boolean negation (unary operator): !,not

比較和等價(Comparisons and equality)

  • 比較(Comparators): >,<,>=,<=(gt,lt,ge,le)

  • 等值運算子(Equality operators): ==,!=(eq,ne)

條件運算子(Conditional operators)

  • If-then: (if)?(then)

  • If-then-else: (if)?(then):(else)

  • Default: (value) ?: (defaultvalue)

所有這些特徵可以被組合並巢狀:

'User is of type ' + (${user.isAdmin()} ? 'Administrator' : (${user.type} ?: 'Unknown'))

常用th標籤都有那些?

關鍵字功能介紹案例
th:id替換id<inputth:id="'xxx' + ${collect.id}"/>
th:text文字替換<pth:text="${collect.description}">description</p>
th:utext支援html的文字替換<pth:utext="${htmlcontent}">conten</p>
th:object替換物件<divth:object="${session.user}">
th:value屬性賦值<inputth:value="${user.name}"/>
th:with變數賦值運算<divth:with="isEven=${prodStat.count}%2==0"></div>
th:style設定樣式th:style="'display:' + @{(${sitrue} ? 'none' : 'inline-block')} + ''"
th:onclick點選事件th:onclick="'getCollect()'"
th:each屬性賦值tr th:each="user,userStat:${users}">
th:if判斷條件<ath:if="${userId == collect.userId}">
th:unless和th:if判斷相反<ath:href="@{/login}"th:unless=${session.user!=null}>Login</a>
th:href連結地址<ath:href="@{/login}"th:unless=${session.user!=null}>Login</a>/>
th:switch多路選擇 配合th:case 使用<divth:switch="${user.role}">
th:caseth:switch的一個分支<pth:case="'admin'">User is an administrator</p>
th:fragment佈局標籤,定義一個程式碼片段,方便其它地方引用<divth:fragment="alert">
th:include佈局標籤,替換內容到引入的檔案<headth:include="layout :: htmlhead"th:with="title='xx'"></head>/>
th:replace佈局標籤,替換整個標籤到引入的檔案<divth:replace="fragments/header :: title"></div>
th:selectedselected選擇框 選中th:selected="(${xxx.id} == ${configObj.dd})"
th:src圖片類地址引入<imgclass="img-responsive"alt="App Logo"th:src="@{/img/logo.png}"/>
th:inline定義js指令碼可以使用變數<scripttype="text/javascript"th:inline="javascript">
th:action表單提交的地址<formaction="subscribe.html"th:action="@{/subscribe}">
th:remove刪除某個屬性<trth:remove="all">1.all:刪除包含標籤和所有的孩子。2.body:不包含標記刪除,但刪除其所有的孩子。3.tag:包含標記的刪除,但不刪除它的孩子。4.all-but-first:刪除所有包含標籤的孩子,除了第一個。5.none:什麼也不做。這個值是有用的動態評估。
th:attr設定標籤屬性,多個屬性可以用逗號分隔比如 th:attr="src=@{/image/aa.jpg},title=#{logo}",此標籤不太優雅,一般用的比較少。

還有非常多的標籤,這裡只列出最常用的幾個,由於一個標籤內可以包含多個th:x屬性,其生效的優先順序順序為: include,each,if/unless/switch/case,with,attr/attrprepend/attrappend,value/href,src,etc,text/utext,fragment,remove

幾種常用的使用方法

1、賦值、字串拼接

<p  th:text="${collect.description}">description</p><span th:text="'Welcome to our application, ' + ${user.name} + '!'">

字串拼接還有另外一種簡潔的寫法

<span th:text="|Welcome to our application, ${user.name}!|">

2、條件判斷 If/Unless

Thymeleaf中使用th:if和th:unless屬性進行條件判斷,下面的例子中, <a>標籤只有在 th:if中條件成立時才顯示:

<a th:if="${myself=='yes'}" > </i> </a><a th:unless=${session.user != null} th:href="@{/login}" >Login</a>

th:unless 於 th:if 恰好相反,只有表示式中的條件不成立,才會顯示其內容。

也可以使用 (if)?(then):(else)這種語法來判斷顯示的內容

3、for 迴圈

<tr  th:each="collect,iterStat : ${collects}">    <th scope="row" th:text="${collect.id}">1</th>   <td >      <img th:src="${collect.webLogo}"/>   </td>   <td th:text="${collect.url}">Mark</td>   <td th:text="${collect.title}">Otto</td>   <td th:text="${collect.description}">@mdo</td>   <td th:text="${terStat.index}">index</td></tr>

iterStat稱作狀態變數,屬性有:

  • index:當前迭代物件的 index(從0開始計算)

  • count: 當前迭代物件的 index(從1開始計算)

  • size:被迭代物件的大小

  • current:當前迭代變數

  • even/odd:布林值,當前迴圈是否是偶數/奇數(從0開始計算)

  • first:布林值,當前迴圈是否是第一個

  • last:布林值,當前迴圈是否是最後一個

4、URL

URL 在 Web 應用模板中佔據著十分重要的地位,需要特別注意的是 Thymeleaf 對於 URL 的處理是透過語法 @{...} 來處理的。 如果需要 Thymeleaf 對 URL 進行渲染,那麼務必使用 th:href, th:src 等屬性,下面是一個例子

  1. <!-- Will produce ' (plus rewriting) -->

  2. <a  th:href="@{/standard/{type}(type=${type})}">view</a>


  3. <!-- Will produce '/gtvg/order/3/details' (plus rewriting) -->

  4. <a href="details.html" th:href="@{/order/{orderId}/details(orderId=${o.id})}">view</a>

設定背景

<div th:style="'background:url(' + @{/<path-to-image>} + ');'"></div>

根據屬性值改變背景

 <div class="media-object resource-card-image"  th:style="'background:url(' + @{(${collect.webLogo}=='' ? 'img/favicon.png' : ${collect.webLogo})} + ')'" ></div>

幾點說明:

  • 上例中 URL 最後的 (orderId=${o.id})表示將括號內的內容作為 URL 引數處理,該語法避免使用字串拼接,大大提高了可讀性

  • @{...}表示式中可以透過 {orderId}訪問 Context 中的 orderId 變數

  • @{/order}是 Context 相關的相對路徑,在渲染時會自動新增上當前 Web 應用的 Context 名字,假設 context 名字為 app,那麼結果應該是 /app/order

5、內聯 js

內聯文字:[[...]] 內聯文字的表示方式,使用時,必須先用 th:inline="text/javascript/none"啟用, th:inline可以在父級標籤內使用,甚至作為 body 的標籤。內聯文字儘管比 th:text的程式碼少,不利於原型顯示。

<script th:inline="javascript">/*<![CDATA[*/...var username = /*[[${sesion.user.name}]]*/ 'Sebastian';var size = /*[[${size}]]*/ 0;.../*]]>*/</script>

js 附加程式碼:

/*[+var msg = 'This is a working application';+]*/

js 移除程式碼:

/*[- */var msg = 'This is a non-working template';/* -]*/

6、內嵌變數

為了模板更加易用,Thymeleaf 還提供了一系列 Utility 物件(內建於 Context 中),可以透過 # 直接訪問:

  • dates : java.util.Date的功能方法類。

  • calendars : 類似#dates,面向java.util.Calendar

  • numbers : 格式化數字的功能方法類

  • strings : 字串物件的功能類,contains,startWiths,prepending/appending等等。

  • objects: 對objects的功能類操作。

  • bools: 對布林值求值的功能方法。

  • arrays:對陣列的功能類方法。

  • lists: 對lists功能類方法

  • sets

  • maps
    ...

下面用一段程式碼來舉例一些常用的方法:

dates

  1. /*

  2. * Format date with the specified pattern

  3. * Also works with arrays, lists or sets

  4. */

  5. ${#dates.format(date, 'dd/MMM/yyyy HH:mm')}

  6. ${#dates.arrayFormat(datesArray, 'dd/MMM/yyyy HH:mm')}

  7. ${#dates.listFormat(datesList, 'dd/MMM/yyyy HH:mm')}

  8. ${#dates.setFormat(datesSet, 'dd/MMM/yyyy HH:mm')}


  9. /*

  10. * Create a date (java.util.Date) object for the current date and time

  11. */

  12. ${#dates.createNow()}


  13. /*

  14. * Create a date (java.util.Date) object for the current date (time set to 00:00)

  15. */

  16. ${#dates.createToday()}

strings

  1. /*

  2. * Check whether a String is empty (or null). Performs a trim() operation before check

  3. * Also works with arrays, lists or sets

  4. */

  5. ${#strings.isEmpty(name)}

  6. ${#strings.arrayIsEmpty(nameArr)}

  7. ${#strings.listIsEmpty(nameList)}

  8. ${#strings.setIsEmpty(nameSet)}


  9. /*

  10. * Check whether a String starts or ends with a fragment

  11. * Also works with arrays, lists or sets

  12. */

  13. ${#strings.startsWith(name,'Don')}                  // also array*, list* and set*

  14. ${#strings.endsWith(name,endingFragment)}           // also array*, list* and set*


  15. /*

  16. * Compute length

  17. * Also works with arrays, lists or sets

  18. */

  19. ${#strings.length(str)}


  20. /*

  21. * Null-safe comparison and concatenation

  22. */

  23. ${#strings.equals(str)}

  24. ${#strings.equalsIgnoreCase(str)}

  25. ${#strings.concat(str)}

  26. ${#strings.concatReplaceNulls(str)}


  27. /*

  28. * Random

  29. */

  30. ${#strings.randomAlphanumeric(count)}

使用 Thymeleaf 佈局

Spring Boot 2.0 將佈局單獨提取了出來,需要單獨引入依賴:thymeleaf-layout-dialect。

<dependency>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-thymeleaf</artifactId></dependency><dependency>    <groupId>nz.net.ultraq.thymeleaf</groupId>    <artifactId>thymeleaf-layout-dialect</artifactId></dependency>

定義程式碼片段

<footer th:fragment="copy"> &copy; 2019</footer>

在頁面任何地方引入:

<body>    <div th:insert="layout/copyright :: copyright"></div>    <div th:replace="layout/copyright :: copyright"></div></body>

th:insert 和 th:replace 區別,insert 只是載入,replace 是替換。Thymeleaf 3.0 推薦使用 th:insert 替換 2.0 的 th:replace。

返回的 HTML 如下:

<body>    <div> &copy; 2019 </div>   <footer>&copy; 2019 </footer> </body>

下面是一個常用的後臺頁面佈局,將整個頁面分為頭部,尾部、選單欄、隱藏欄,點選選單隻改變 content 區域的頁面

<body class="layout-fixed">  <div th:fragment="navbar"  class="wrapper"  role="navigation">    <div th:replace="fragments/header :: header">Header</div>    <div th:replace="fragments/left :: left">left</div>    <div th:replace="fragments/sidebar :: sidebar">sidebar</div>    <div layout:fragment="content" id="content" ></div>    <div th:replace="fragments/footer :: footer">footer</div>  </div></body>

任何頁面想使用這樣的佈局值只需要替換中見的 content 模組即可

<html xmlns:th="

也可以在引用模版的時候傳參

<head th:include="layout :: htmlhead" th:with="title='Hello'"></head>

layout 是檔案地址,如果有資料夾可以這樣寫 fileName/layout:htmlhead,htmlhead 是指定義的程式碼片段 如 th:fragment="copy"

文章示例專案

示例程式碼-

文章內容已經升級到 Spring Boot 2.x

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31499124/viewspace-2641137/,如需轉載,請註明出處,否則將追究法律責任。

相關文章