springboo整合html项目restful风格
时间: 2023-08-16 21:06:07 浏览: 82
要将一个 HTML 项目整合到 Spring Boot 中,需要使用 Spring Boot 的 Web 模块,同时使用 Thymeleaf 模板引擎来渲染 HTML 页面。接下来,可以通过设置 `@RestController` 注解来实现 RESTful 风格的 API 接口。
以下是一些主要步骤:
1. 添加 Spring Boot 的 Web 和 Thymeleaf 依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
2. 创建一个控制器类来处理请求和响应:
```java
@RestController
@RequestMapping("/api")
public class ApiController {
@GetMapping("/hello")
public String hello() {
return "Hello, World!";
}
}
```
3. 创建一个 Thymeleaf 模板来渲染 HTML 页面:
```html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>My HTML Page</title>
</head>
<body>
<h1 th:text="${message}"></h1>
</body>
</html>
```
4. 创建一个控制器类来返回 HTML 页面:
```java
@Controller
public class HtmlController {
@GetMapping("/")
public String index(Model model) {
model.addAttribute("message", "Hello, World!");
return "index";
}
}
```
5. 在 `application.properties` 文件中添加 Thymeleaf 的配置:
```
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
```
现在,可以通过访问 `http://localhost:8080/api/hello` 来获取一个 JSON 格式的响应,也可以通过访问 `http://localhost:8080/` 来获取一个 HTML 页面。
阅读全文