springBoot静态资源文件夹以及文件夹之间的优先级

1、springBoot静态资源文件夹,系统默认路径,优先级由大到小

classpath:/META-INF/resources/
classpath:/resources/
classpath:/static/
classpath:/public/
springBoot静态资源文件夹以及文件夹之间的优先级_第1张图片
比如当static文件夹中和public文件夹中都存在a.html
浏览器访问localhost:8080/a.html将访问static中的a.html

  • 注意:
  • springBoot只能访问文件夹下的资源,不能访问子文件夹下的资源
  • 使用了thymeleaf模板一样可以访问静态资源

你可能感兴趣的:(文件及静态资源,spring,boot)