规则一:
访问:/webjars/** 路径就去 classpath:/META-INF/resources/webjars/下载资源
a.maven导入依赖
规则二:
访问:/** 路径就去 静态资源默认的四个位置找资源
a. classpath:/META-INF/resources/
b.classpath:/resources/
c.classpath:/statice/
d.classpath:/public/
规则三:静态资源默认都有缓存规则的设置
a、所有缓存设置,直接通过配置文件: spring.web
b、cachePeriod:缓存周期,多久不用找服务器要新的,默认没有,以s为单位
c、cacheControl:Http缓存控制:
HTTP 缓存 - HTTP | MDN
d、userLastModified: 是否使用最后一次修改,配合HTTP Cache规则
如果浏览器访问静态资源index.js,如果服务这个资源没有发生变化,下次访问的时候就可以直接让浏览器用自己缓存中的东西,而不用给服务器发送请求
registration.setCachePeriod(this.getSeconds(this.resourceProperties.getCache().getPeriod())); registration.setCacheControl(this.resourceProperties.getCache().getCachecontrol().toHttpCacheControl()); registration.setUseLastModified(this.resourceProperties.getCache().isUseLastModified());