springboot thymeleaf配置
时间: 2023-04-22 10:02:53 浏览: 127
Spring Boot和Thymeleaf的配置步骤如下:
1. 在pom.xml文件中添加以下依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
2. 在application.properties文件中添加以下配置:
```
spring.thymeleaf.mode=HTML
spring.thymeleaf.cache=false
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
```
3. 在src/main/resources/templates目录下创建HTML模板文件。
4. 在Controller中使用Thymeleaf模板引擎渲染HTML页面。
例如:
```
@Controller
public class MyController {
@GetMapping("/hello")
public String hello(Model model) {
model.addAttribute("name", "World");
return "hello";
}
}
```
在templates目录下创建hello.html文件,内容如下:
```
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
<h1>Hello, [[${name}]]!</h1>
</body>
</html>
```
在浏览器中访问http://localhost:808/hello,即可看到渲染后的页面。
阅读全文