springboot配置启动页
时间: 2023-11-17 16:02:20 浏览: 80
springboot配置
Spring Boot提供了多种方式来配置启动页,以下是其中两种常用的方式:
1.在src/main/resources/static目录下添加index.html文件,Spring Boot会自动将其作为启动页。
2.在application.properties或application.yml文件中添加以下配置:
```
# 配置启动页为index.html
spring.mvc.view.prefix=/static/
spring.mvc.view.suffix=.html
spring.mvc.static-path-pattern=/static/**
```
其中,第一行配置了启动页的路径为/static/,第二行配置了启动页的后缀为.html,第三行配置了静态资源的路径为/static/**。
阅读全文