springboot 静态资源

1. “spring.mvc.static-path-pattern”
spring.mvc.static-path-pattern代表的含义是我们应该以什么样的路径来访问静态资源,换句话说,只有静态资源满足什么样的匹配条件,Spring Boot才会处理静态资源请求,以官方配置为例:

#   这表示只有静态资源的访问路径为/resources/**时,才会处理请求
spring.mvc.static-path-pattern=/resources/**,

springboot默认该值是/**

所以在启动时打印日志有

 [ main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]

假定采用默认的配置端口,那么只有请求地址类似于“http://localhost:8080/resources/jquery.js”时,Spring Boot才会处理此请求,处理方式是将根据模式匹配后的文件名查找本地文件,那么应该在什么地方查找本地文件呢?这就是“spring.resources.static-locations”的作用了。

2. “spring.resources.static-locations”
“spring.resources.static-locations”用于告诉Spring Boot应该在何处查找静态资源文件,这是一个列表性的配置,查找文件时会依赖于配置的先后顺序依次进行,默认的官方配置如下:

spring.resources.static-locations=classpath:/static,classpath:/public,classpath:/resources,classpath:/META-INF/resources
继续以上面的请求地址为例,“http://localhost:8080/resources/jquery.js”就会在上述的四个路径中依次查找是否存在“jquery.js”文件,如果找到了,则返回此文件,否则返回404错误。

3.java文件中配置以上两项

addResourceHandler配置同spring.mvc.static-path-pattern,
addResourceLocations配置同spring.resources.static-locations

每两个为一组配置,定义了静态资源以及该静态资源的访问路径

@Override
	public void addResourceHandlers(ResourceHandlerRegistry registry) {
		        registry.addResourceHandler("/**").addResourceLocations("classpath:/static/dist/");
registry.addResourceHandler("/yuncai.html").addResourceLocations("classpath:/static/docs/");
registry.addResourceHandler("/swagger-ui.html").addResourceLocations("classpath:/META-INF/resources/");
	}


4.classpath:/static/dist/中的classpath指的路径是哪里

将springboot工程打成jar包后的 /BOOT-INF/classes路径, 即是classpath

posted @ 2019-01-03 16:41  車輪の唄  阅读(12)  评论(0编辑  收藏  举报  来源