要在 Spring Boot 中整合 Thymeleaf 模板引擎,可以按照以下步驟進(jìn)行操作:
1. 添加 Thymeleaf 依賴:在 Maven 或 Gradle 構(gòu)建文件中添加 Thymeleaf 的依賴。
對(duì)于 Maven:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
對(duì)于 Gradle:
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
2. 配置 Thymeleaf:在配置文件(如 application.properties 或 application.yml)中配置 Thymeleaf 相關(guān)的屬性。
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML
這里的 `prefix` 是指定 Thymeleaf 模板文件所在的路徑,`suffix` 是指定模板文件的后綴,`mode` 是指定模板模式。
3. 創(chuàng)建 Thymeleaf 模板文件:在指定的模板路徑下創(chuàng)建 Thymeleaf 模板文件,例如 `index.html`。
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Spring Boot Thymeleaf</title>
</head>
<body>
<h1>Welcome to Spring Boot Thymeleaf!</h1>
</body>
</html>
4. 創(chuàng)建控制器:創(chuàng)建一個(gè) Spring MVC 控制器來處理請(qǐng)求并返回 Thymeleaf 模板。
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HomeController {
@GetMapping("/")
public String home(Model model) {
model.addAttribute("message", "Hello, Thymeleaf!");
return "index";
}
}
在上述示例中,`home` 方法將一個(gè)名為 "message" 的屬性添加到模型中,并返回名為 "index" 的模板文件。
5. 運(yùn)行應(yīng)用程序:啟動(dòng) Spring Boot 應(yīng)用程序,并訪問 http://localhost:8080/ 來查看 Thymeleaf 渲染的頁面。
通過以上步驟,你就可以在 Spring Boot 中成功整合 Thymeleaf 模板引擎了。Thymeleaf 提供了豐富的模板語法和表達(dá)式,可以方便地進(jìn)行頁面渲染和數(shù)據(jù)綁定,是一個(gè)強(qiáng)大而靈活的模板引擎。