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

溫馨提示×

溫馨提示×

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

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

Spring Boot中Thymeleaf模板引擎使用

發布時間:2024-11-15 11:39:59 來源:億速云 閱讀:78 作者:小樊 欄目:編程語言

Thymeleaf模板引擎在Spring Boot中的應用非常廣泛,它可以幫助我們輕松地創建動態Web頁面。下面是一些關于如何在Spring Boot中使用Thymeleaf模板引擎的基本步驟:

  1. 添加依賴

首先,在你的pom.xml文件中添加Thymeleaf的依賴:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
  1. 配置Thymeleaf

application.propertiesapplication.yml文件中配置Thymeleaf的相關屬性,例如:

# application.properties
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.cache=false
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.mode=HTML

或者

# application.yml
spring:
  thymeleaf:
    prefix: classpath:/templates/
    suffix: .html
    cache: false
    encoding: UTF-8
    mode: HTML
  1. 創建模板文件

src/main/resources/templates目錄下創建HTML模板文件,例如index.html

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title th:text="${title}">Title</title>
</head>
<body>
    <h1 th:text="${message}">Hello, World!</h1>
</body>
</html>

注意th命名空間的引入,它允許我們使用Thymeleaf的特性。

  1. 編寫控制器

創建一個控制器類,用于處理HTTP請求并返回對應的模板名稱:

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;

@Controller
public class MyController {

    @GetMapping("/")
    public String index(Model model) {
        model.addAttribute("title", "Thymeleaf示例");
        model.addAttribute("message", "歡迎使用Thymeleaf模板引擎!");
        return "index";
    }
}
  1. 運行應用

啟動你的Spring Boot應用,然后在瀏覽器中訪問http://localhost:8080/,你將看到Thymeleaf模板引擎渲染的頁面。

以上就是在Spring Boot中使用Thymeleaf模板引擎的基本步驟。你可以根據實際需求,進一步探索Thymeleaf的其他特性,如條件判斷、循環、表單等。

向AI問一下細節

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

AI

罗定市| 海兴县| 化州市| 高平市| 开封市| 漳州市| 罗平县| 丘北县| 察隅县| 九江县| 南江县| 藁城市| 长子县| 万年县| 镇雄县| 泊头市| 闻喜县| 呼和浩特市| 五指山市| 阿克苏市| 武强县| 稷山县| 隆德县| 滦平县| 贺兰县| 丽江市| 济宁市| 荆门市| 资讯| 胶州市| 明溪县| 桐庐县| 新巴尔虎左旗| 洪湖市| 平南县| 建昌县| 额敏县| 文水县| 济南市| 揭西县| 仁寿县|