91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot中如何使用Thymeleaf模板

發布時間:2022-04-25 13:47:31 來源:億速云 閱讀:198 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“SpringBoot中如何使用Thymeleaf模板”,內容詳細,步驟清晰,細節處理妥當,希望這篇“SpringBoot中如何使用Thymeleaf模板”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

一.什么是Thymeleaf

官網原話:Thymeleaf是適用于Web和獨立環境的現代服務器端Java模板引擎,能夠處理HTML,XML,JavaScript,CSS甚至純文本。 Thymeleaf的主要目標是提供一種優雅且高度可維護的模板創建方式。為此,它以自然模板的概念為基礎,以不影響模板用作設計原型的方式將其邏輯注入模板文件。這樣可以改善設計溝通,并縮小設計團隊與開發團隊之間的差距。Thymeleaf是一個HTML5模板引擎,可用于Web環境中的應用開發。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">換成<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>

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模板”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汤原县| 安徽省| 云阳县| 花莲市| 杭锦后旗| 汨罗市| 淮阳县| 恩平市| 临泉县| 和龙市| 大名县| 涟源市| 方正县| 崇州市| 新巴尔虎左旗| 永康市| 新和县| 泉州市| 简阳市| 文安县| 资溪县| 天全县| 聂拉木县| 武强县| 稷山县| 收藏| 化隆| 祥云县| 尼木县| 临澧县| 奉贤区| 霍林郭勒市| 泽州县| 夏河县| 宝兴县| 进贤县| 林西县| 米泉市| 石渠县| 和平区| 邵阳县|