使用thymeleaf
时间: 2023-07-06 20:20:33 浏览: 118
Thymeleaf是一个Java模板引擎,它可以将模板和数据合并生成最终的HTML文档。在使用Thymeleaf时,需要在Maven或Gradle中引入Thymeleaf的依赖,并且在Spring Boot应用程序中进行配置。
以下是使用Thymeleaf的基本步骤:
1. 在Maven或Gradle中引入Thymeleaf的依赖。
2. 在Spring Boot应用程序中进行配置,例如在application.properties中添加以下内容:
```
spring.thymeleaf.cache=false
spring.thymeleaf.check-template-location=true
spring.thymeleaf.enabled=true
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
```
3. 在Spring Boot应用程序中编写控制器,将数据传递给Thymeleaf模板。
4. 在resources/templates文件夹中创建Thymeleaf模板文件,使用Thymeleaf的语法插入数据。
例如,以下是一个使用Thymeleaf的简单示例:
控制器:
```
@Controller
public class HomeController {
@GetMapping("/")
public String home(Model model) {
model.addAttribute("message", "Hello, Thymeleaf!");
return "home";
}
}
```
Thymeleaf模板:
```
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Thymeleaf Example</title>
</head>
<body>
<h1 th:text="${message}">Hello, World!</h1>
</body>
</html>
```
在这个示例中,控制器中的home()方法将一个名为“message”的数据添加到模型中,并返回名为“home”的字符串。Thymeleaf模板中使用th:text指令插入数据。当控制器返回的视图名称为“home”时,将使用该模板生成HTML文档,并将模板中的“message”变量替换为“Hello, Thymeleaf!”。
阅读全文