SpringBoot访问静态资源

505 阅读1分钟

静态资源存放位置

SpringBoot项目中没有WebApp目录,只有src目录。在src/main/resources 下面有 static 和 templates 两个文件夹。SpringBoot默认在static 目录中存放静态资源,而 templates 中放动态页面。

  • static目录 SpringBoot通过 /resources/static 目录访问静态资源
  • templates目录 在SpringBoot中不推荐使用JSP作为动态页面,而是默认使用Thymeleaf编写动态页面。templates目录是存放Thymeleaf页面的目录

静态资源其他存放位置

除了 /resources/static 目录,SpringBoot还会扫描以下位置的静态资源:

  • /resources/META‐INF/resources/
  • /resources/resources/
  • /resources/public/ 还可以在配置文件自定义静态资源位置 详见文档