1、欢迎页
Spring Boot 同时支持静态和模板化的欢迎页面。
它首先在配置的静态内容位置寻找 index.html 文件。如果没有找到,它就会寻找一个 index 模板。如果找到了其中之一,它就会自动作为应用程序的欢迎页面。
人话:
- 静态资源路径下 index.html
- controller 能处理 /index
2.4.5 版本发现的一些BUG
只要配置了静态资源路径前缀或更改了默认静态资源路径,则欢迎页与 favicon.icon 会失效
spring:
mvc:
static-path-pattern: "/res/**"
web:
resources:
static-locations: classpath:/abcd/
2、自定义图标( Favicon )
将 favicon.ico 放到静态资源目录下即可。