SpringBoot(八):静态资源配置
在SpringBoot中有六种方式来配置相关的静态资源。
1.webjars
导入webjars的相关静态资源依赖
访问方式:localhost:8080/webjars/静态资源名称
2.classpath:/static
将静态资源文件放置于此目录下,这也是SpringBoot项目默认给出的目录
访问方式:localhost:8080/静态资源名称
3.classpath:/public
将静态资源文件放置于此目录下
访问方式:localhost:8080/静态资源名称
4.classpath:/resources
将静态资源文件放置于此目录下
访问方式:localhost:8080/静态资源名称
5.classpath:/META-INF/resources
将静态资源文件放置于此目录下
访问方式:localhost:8080/静态资源名称
6.自己配置静态资源路径
yaml形式:
spring: web: resources: static-locations: 静态资源路径
properties形式:
spring.web.resources.static-locations=静态资源路径
(本文仅作个人学习记录用,如有纰漏敬请指正)