springboot~静态资源配置
1.springboot的静态资源默认路径
请求效果见图
2.给静态资源请求加前缀
有时需要用拦截器对某些请求进行拦截后再处理相关的业务代码,此时我们就要对请求进行前缀限制。
下方截图就是配置静态资源请求前缀的方式
配置后如果url中不加前缀,就会报404
正确写法是http://localhost:8080/res/AA.png
3.指定静态资源加载的包
spring.web.resources.static-locations: classpath:/目录名/
# 静态文件请求匹配方式
spring:
mvc:
static-path-pattern: /res/**
# 修改默认静态寻址资源路径
web:
resources:
# static-locations: classpath:/haha/
static-locations: [classpath:/haha/]
也可以写成数组的形式,因为spring封装的就是数组,进入到static-locations配置中可以看到
4.欢迎页
在静态资源目录下创建一个index.html作为系统根路径请求的欢迎页,此时springboot会默认访问静态资源下的index.html文件。
此时不能在配置文件中配置’静态文件请求匹配方式’,不然spring将找不到index.html文件。
5.自定义Favicon
只要在静态资源目录下放置一个favicon.ico,springboot会默认加载这个文件
如果favicon加载有问题,可以参考我的另一个处理favicon加载问题的笔记。
处理favicon加载问题