SpringBoot访问静态资源

2年前 (2022) 程序员胖胖胖虎阿
205 0 0

SpringBoot-----SpringBoot访问静态资源

文章目录

  • 🔥一、静态资源相关目录
  • 🔥二、静态资源其他存放位置

SpringBoot访问静态资源

🔥一、静态资源相关目录

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

1、static目录

SpringBoot通过/resources/static目录访问静态资源,在resources/static中编写html页面:
SpringBoot访问静态资源

2、templates目录

在SpringBoot中不推荐使用JSP作为动态页面,而是默认使用Thymeleaf编写动态页面。templates目录是存放Thymeleaf页面的目录,稍后我们讲解Thymeleaf技术。
SpringBoot访问静态资源

🔥二、静态资源其他存放位置

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

1 、/resources/META-INF/resources/

2、/resources/resources/

3、resources/public/
SpringBoot访问静态资源

在SpringBoot配置文件进行自定义静态资源位置配置:
spring:
web:
resources:
static-locations: classpath:/yingxiong/,classpath:/static/

注意:
该配置会默认覆盖静态资源位置 , 如果还想使用之前的静态资源位置 , 还需要配置在后面
SpringBoot2.5之前的配置方式为 spring.resources.static-locations

SpringBoot访问静态资源

✨脚踏实地,一步一步,总能成功✨

版权声明:程序员胖胖胖虎阿 发表于 2022年9月1日 下午9:24。
转载请注明:SpringBoot访问静态资源 | 胖虎的工具箱-编程导航

相关文章

暂无评论

暂无评论...