您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“SpringBoot中如何使用Thymeleaf模板”,內容詳細,步驟清晰,細節處理妥當,希望這篇“SpringBoot中如何使用Thymeleaf模板”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
官網原話:Thymeleaf是適用于Web和獨立環境的現代服務器端Java模板引擎,能夠處理HTML,XML,JavaScript,CSS甚至純文本。 Thymeleaf的主要目標是提供一種優雅且高度可維護的模板創建方式。為此,它以自然模板的概念為基礎,以不影響模板用作設計原型的方式將其邏輯注入模板文件。這樣可以改善設計溝通,并縮小設計團隊與開發團隊之間的差距。Thymeleaf是一個HTML5模板引擎,可用于Web環境中的應用開發。Thymeleaf提供了一個用于整合Spring MVC的可選模塊,在應用開發中,你可以使用Thymeleaf來完全代替JSP或其他模板引擎,如Velocity、FreeMarker等。Thymeleaf的主要目標在于提供一種可被瀏覽器正確顯示的、格式良好的模板創建方式。thymeleaf模板引擎,替代jsp。
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
在application.yml中的spring:下添加如下代碼(能讓改動的頁面及時生效,實現類似熱部署效果):
#能讓改動的頁面及時生效,實現類似熱部署效果 thymeleaf: cache: false
注意縮進,添加后縮進如下:
創建一個普通的html文件hello.html,如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> </body> </html>
在html的標簽上加入名稱空間xmlns:th="http://www.thymeleaf.org"
表示該頁面是一個thymeleaf模板頁面。 即把上述代碼中<html lang="en">
換成<html lang="en" xmlns:th="http://www.thymeleaf.org">
這樣就可以在頁面中的標簽內使用th屬性取出model中的值,類似于EL表達式。 具體用法代碼如下:
<!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <p th:text="'歡迎來到中國,我叫'+${name}+',今年'+${age}+'歲。'"></p> <p>歡迎來到中國,我叫<span th:text="${name}"></span>,今年<span th:text="${age}"></span>歲。</p> </body> </html>
ackage com.ysw.springboot01.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping("/thy") public class ThymeleafController { @RequestMapping("/hello") public String hello0(Model model){ //向model中存入數據 model.addAttribute("name","李白"); model.addAttribute("age","18"); //跳轉到hello.html模版引擎 return "hello"; } }
效果如下:
讀到這里,這篇“SpringBoot中如何使用Thymeleaf模板”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。