web开发-Spring|web开发-Spring Boot静态资源文件夹

  • /**访问当前项目静态文件夹的任何资源
【web开发-Spring|web开发-Spring Boot静态资源文件夹】classpath:/META-INF/resources/
classpath:/resources/
classpath:/static/
classpath:/public/
/ (当前项目根路径)
  • 欢迎页:静态资源文件夹下的所有index.html都被/**映射
  • 所有的**/favorite.icon都是在静态资源文件夹下找
  • 静态资源文件夹可以自己再配置文件中指定
spring.resources.static-location=classpath:/xxx

    推荐阅读