Springboot +Thymeleaf
时间: 2023-12-04 14:31:49 浏览: 119
Spring Boot 是一个开源的框架,能够帮助开发者快速地创建基于 Spring 框架的应用程序。而 Thymeleaf 是一种模板引擎,可以将 HTML 模板和数据结合起来,生成动态的 Web 页面。Spring Boot 和 Thymeleaf 的结合可以让开发者更加方便地创建 Web 应用程序。
下面是一个简单的 Spring Boot + Thymeleaf 的示例:
1. 创建一个 Spring Boot 项目,添加 Thymeleaf 依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
2. 创建一个 Controller 类,并添加一个处理请求的方法:
```
@Controller
public class MyController {
@GetMapping("/")
public String home(Model model) {
model.addAttribute("message", "Hello World!");
return "home";
}
}
```
3. 创建一个 Thymeleaf 模板:
```
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Home</title>
</head>
<body>
<h1 th:text="${message}"></h1>
</body>
</html>
```
4. 运行应用程序,访问 http://localhost:8080/,即可看到 "Hello World!"。
以上就是一个简单的 Spring Boot + Thymeleaf 的示例。开发者可以根据自己的需求进行扩展和修改。
阅读全文