Springboot Web 请求返回html网页
时间: 2023-05-16 17:07:20 浏览: 113
可以使用Thymeleaf模板引擎来实现Springboot Web请求返回HTML网页。具体实现方法可以参考以下代码:
1.在pom.xml文件中添加以下依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
2.在application.properties文件中添加以下配置:
```
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
```
3.在src/main/resources/templates目录下创建HTML模板文件,例如index.html:
```
<!DOCTYPE html>
<html>
<head>
<title>Springboot Web请求返回HTML网页</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
```
4.在Controller中添加请求处理方法,例如HomeController.java:
```
@Controller
public class HomeController {
@RequestMapping("/")
public String home(Model model) {
return "index";
}
}
```
5.启动Springboot应用程序,访问http://localhost:8080/即可看到返回的HTML网页。
注意:以上代码仅供参考,具体实现方法可能因项目配置和需求不同而有所差异。
阅读全文