官網原話:Thymeleaf是適用於Web和獨立環境的現代伺服器端Java模板引擎,能夠處理HTML,XML,JavaScript,CSS甚至純文字。 Thymeleaf旨在提供一種優美且易於維護的模板創建方式。它以自然模板為藍本,以不影響模板作為設計原型的方式,將邏輯注入模板檔案。這樣可以改善設計溝通,並縮小設計團隊與開發團隊之間的差距。 Thymeleaf是一種用於Web應用程式開發的HTML5模板引擎。 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">
換成 這樣就可以在頁面中的標籤內使用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模板的詳細內容。更多資訊請關注PHP中文網其他相關文章!