溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Spring Boot中Thymeleaf模板引擎使用

發(fā)布時(shí)間:2024-11-15 11:39:59 來(lái)源:億速云 閱讀:78 作者:小樊 欄目:編程語(yǔ)言

Thymeleaf模板引擎在Spring Boot中的應(yīng)用非常廣泛,它可以幫助我們輕松地創(chuàng)建動(dòng)態(tài)Web頁(yè)面。下面是一些關(guān)于如何在Spring Boot中使用Thymeleaf模板引擎的基本步驟:

  1. 添加依賴(lài)

首先,在你的pom.xml文件中添加Thymeleaf的依賴(lài):

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

application.propertiesapplication.yml文件中配置Thymeleaf的相關(guān)屬性,例如:

# 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. 創(chuàng)建模板文件

src/main/resources/templates目錄下創(chuàng)建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. 編寫(xiě)控制器

創(chuàng)建一個(gè)控制器類(lèi),用于處理HTTP請(qǐng)求并返回對(duì)應(yīng)的模板名稱(chēng):

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. 運(yùn)行應(yīng)用

啟動(dòng)你的Spring Boot應(yīng)用,然后在瀏覽器中訪問(wèn)http://localhost:8080/,你將看到Thymeleaf模板引擎渲染的頁(yè)面。

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

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI