thymeleaf模板引擎访问html,SpringBoot使用Thymeleaf模板引擎访问静态html的过程
时间: 2024-03-17 07:45:35 浏览: 134
在Spring Boot中使用Thymeleaf模板引擎访问静态HTML的过程如下:
1. 在Spring Boot工程中创建一个静态HTML文件,例如index.html。
2. 在application.properties文件中添加以下配置:
```
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
```
这个配置告诉Thymeleaf模板引擎,它应该在classpath:/templates/目录下查找HTML模板文件,后缀为.html。
3. 创建一个Controller,用于处理请求并将数据传递给模板:
```java
@Controller
public class HomeController {
@GetMapping("/")
public String home(Model model) {
model.addAttribute("message", "Hello, world!");
return "index";
}
}
```
这个Controller处理根路径的GET请求,并将一个名为message的属性添加到Model中。然后,它返回index作为视图的名称。
4. 在index.html中使用Thymeleaf模板引擎来呈现message属性:
```html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Home</title>
</head>
<body>
<h1 th:text="${message}"></h1>
</body>
</html>
```
这个HTML文件使用Thymeleaf的th:text属性来呈现message属性。
5. 启动Spring Boot应用程序,并访问http://localhost:8080/,应该看到Hello, world!。
注意:在上述步骤中,我们将HTML文件放在了classpath:/templates/目录下,这是因为Thymeleaf默认会在这个目录下查找模板文件。如果你想将HTML文件放在其他地方,可以在application.properties文件中通过配置spring.thymeleaf.prefix属性来指定模板文件的路径。
阅读全文