SpringBoot中的静态资源规则

规则一: ./webjars/下的所有路径** 资源都在 classpath:/META-INF/resources/webjars/

规则二:/ 的所有路径**资源都在:

   1.clasapath:/META-INF/resources

   2.classpath:/resources/

   3.classpath:/static/

   4.classpath:/public/

所有的静态资源都定义了缓存规则,[浏览器访问过一次,就会缓存一段时间,但此功能参数是无默认值的]--->可以通过配置文件修改默认值(spring.web)

1.period:缓存间隔  默认0s

2.cacheControl:缓存控制,默认无{私有缓存, 共享缓存}

3.userLastModified: 是否使用lastModified头 默认false

源码:

@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
    if (!this.resourceProperties.isAddMappings()) {
        logger.debug("Default resource handling disabled");
        return;
    }
    //1、
    addResourceHandler(registry, this.mvcProperties.getWebjarsPathPattern(),
            "classpath:/META-INF/resources/webjars/");
    addResourceHandler(registry, this.mvcProperties.getStaticPathPattern(), (registration) -> {
        registration.addResourceLocations(this.resourceProperties.getStaticLocations());
        if (this.servletContext != null) {
            ServletContextResource resource = new ServletContextResource(this.servletContext, SERVLET_LOCATION);
            registration.addResourceLocations(resource);
        }
    });
}

  • 4
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值