반응형
添加Thymeleaf依赖:在pom.xml文件中,添加以下依赖来引入Thymeleaf:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
创建Thymeleaf模板:在src/main/resources/templates目录下创建HTML文件,例如index.html。这是Spring Boot默认的模板路径。
示例index.html文件内容:
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Thymeleaf 示例</title>
</head>
<body>
<h1 th:text="${message}">Hello, Thymeleaf!</h1>
</body>
</html>
创建控制器:编写一个Spring控制器来处理请求,并将数据传递给Thymeleaf模板。
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HelloController {
@GetMapping("/hello")
public String hello(Model model) {
model.addAttribute("message", "欢迎使用Thymeleaf!");
return "index"; // 对应 index.html
}
}
运行项目:启动Spring Boot应用程序,并访问http://localhost:8080/hello。页面将显示Thymeleaf渲染的内容。
반응형