1、欢迎页

官方文档位置:
https://docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-features.html#boot-features-spring-mvc-welcome-page

Spring Boot 同时支持静态和模板化的欢迎页面。

它首先在配置的静态内容位置寻找 index.html 文件。如果没有找到,它就会寻找一个 index 模板。如果找到了其中之一,它就会自动作为应用程序的欢迎页面。

人话:

  • 静态资源路径下 index.html
  • controller 能处理 /index

2.4.5 版本发现的一些BUG
只要配置了静态资源路径前缀或更改了默认静态资源路径,则欢迎页与 favicon.icon 会失效

  1. spring:
  2. mvc:
  3. static-path-pattern: "/res/**"
  4. web:
  5. resources:
  6. static-locations: classpath:/abcd/

2、自定义图标( Favicon )

将 favicon.ico 放到静态资源目录下即可。