springboot 如何使用thymeleaf
时间: 2023-07-04 09:19:39 浏览: 110
spring boot使用thymeleaf模板的方法详解
要在Spring Boot中使用Thymeleaf,需要完成以下步骤:
1. 在pom.xml文件中添加Thymeleaf依赖项:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
2. 在Spring Boot应用程序的配置文件application.properties中添加以下配置:
```properties
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
```
这里的配置指定了模板文件的位置和后缀名。
3. 在Spring Boot应用程序中创建一个控制器类,用于处理请求和响应:
```java
@Controller
public class MyController {
@GetMapping("/")
public String home(Model model) {
model.addAttribute("message", "Hello, World!");
return "home";
}
}
```
这里的控制器处理根路径请求,并将一个名为"message"的属性添加到模型中,然后返回"home"字符串,它是模板文件的名称。
4. 在src/main/resources/templates目录下创建home.html文件:
```html
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
</head>
<body>
<h1 th:text="${message}"></h1>
</body>
</html>
```
这里的模板文件包含一个<h1>标签,它使用Thymeleaf表达式来显示"message"属性的值。
5. 运行Spring Boot应用程序,访问http://localhost:8080/,应该能够看到"Hello, World!"。
这样,就完成了在Spring Boot中使用Thymeleaf的基本配置和使用。
阅读全文