当前位置:   article > 正文

SpringBoot2.0设置静态资源不拦截方法_springboot不拦截静态资源

springboot不拦截静态资源

方法一:在application.yml中配置。

spring:
  # 静态资源不拦截,static-path-pattern和static-locations要配合使用
  mvc:
    # 相当于实现WebMvcConfigurer接口addResourceHandlers方法的registry.addResourceHandler("/**")
    static-path-pattern: /**
  resources:
    # 相当于实现WebMvcConfigurer接口addResourceHandlers方法的registry.addResourceLocations("classpath:/templates/","classpath:/static/")
    static-locations: classpath:/templates/,classpath:/static/
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

方法二:实现接口WebMvcConfigurer。


import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

/**
 * 资源拦截器
 * @author tyg
 * @date 2020-09-02 10:26
 */
@Configuration
public class MyWebMvcConfigurer implements WebMvcConfigurer {

    /**
     * 处理静态资源
     * @param registry
     * @author tyg
     * @date 2020-09-02 10:26
     */
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        /*
         * addResourceHandler是访问路径前缀,参数可设置多个,以逗号分隔,例:/image/**,/css/**
         * addResourceLocations是对应的资源路径,也可以设置多个。
         */
        registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
        registry.addResourceHandler("/templates/**").addResourceLocations("classpath:/templates/");
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/262954
推荐阅读
相关标签
  

闽ICP备14008679号