首頁 > Java > java教程 > 主體

SpringBoot中如何使用Thymeleaf模板

WBOY
發布: 2023-05-17 19:19:51
轉載
1289 人瀏覽過

一.什麼是Thymeleaf

官網原話:Thymeleaf是適用於Web和獨立環境的現代伺服器端Java模板引擎,能夠處理HTML,XML,JavaScript,CSS甚至純文字。 Thymeleaf旨在提供一種優美且易於維護的模板創建方式。它以自然模板為藍本,以不影響模板作為設計原型的方式,將邏輯注入模板檔案。這樣可以改善設計溝通,並縮小設計團隊與開發團隊之間的差距。 Thymeleaf是一種用於Web應用程式開發的HTML5模板引擎。 Thymeleaf提供了一個用於整合Spring MVC的可選模組,在應用開發中,你可以使用Thymeleaf來完全取代JSP或其他模板引擎,如Velocity、FreeMarker等。 Thymeleaf的主要目的是為了提供一種能夠產生格式良好的模板,並能被瀏覽器正確顯示的創建方式。 thymeleaf模板引擎,替代jsp。

二.SpringBoot中使用Thymeleaf模板

1.pom.xml中加入thymeleaf依賴

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
登入後複製

2.關閉thymeleaf快取

在application.yml中的spring:下新增如下程式碼(能讓改動的頁面及時生效,實現類似熱部署效果):

#能让改动的页面及时生效,实现类似热部署效果
thymeleaf:
    cache: false
登入後複製

注意縮進,新增後縮排如下:

SpringBoot中如何使用Thymeleaf模板

3.建立thymeleaf範本頁面

建立一個普通的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="&#39;欢迎来到中国,我叫&#39;+${name}+&#39;,今年&#39;+${age}+&#39;岁。&#39;"></p>
    <p>欢迎来到中国,我叫<span th:text="${name}"></span>,今年<span th:text="${age}"></span>岁。</p>
</body>
</html>
登入後複製

4.建立一個類別(用於與上述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";
    }
}
登入後複製

5.存取服務路徑

效果如下:

SpringBoot中如何使用Thymeleaf模板

#

以上是SpringBoot中如何使用Thymeleaf模板的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:yisu.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!