springboot配置html
时间: 2023-11-28 08:37:36 浏览: 71
1. 在pom.xml中引入thymeleaf和spring-boot-starter-thymeleaf依赖
```
<dependencies>
<!-- thymeleaf模板引擎 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
</dependencies>
```
2. 在application.properties中配置thymeleaf的前缀和后缀
```
# thymeleaf视图解析器前缀
spring.thymeleaf.prefix=classpath:/templates/
# thymeleaf视图解析器后缀
spring.thymeleaf.suffix=.html
```
3. 创建html文件
在src/main/resources/templates目录下创建html文件,例如index.html
4. 创建Controller类
创建一个Controller类,用于返回html页面
```
@Controller
public class IndexController {
@RequestMapping("/")
public String index() {
return "index";
}
}
```
5. 启动应用程序
启动应用程序并访问http://localhost:8080/,即可查看index.html页面。
阅读全文