在Spring Boot2.0+的版本中,只要用户自定义了拦截器,则静态资源会被拦截。但是在spring1.0+的版本中,是不会拦截静态资源的。
因此,在使用Spring Boot2.0+时,配置拦截器之后,我们要把静态资源的路径加入到不拦截的路径之中。
@Configuration
public class InterceptorConfig implements WebMvcConfigurer {
@Override
public void addInterceptors(InterceptorRegistry registry) {
InterceptorRegistration registration = registry.addInterceptor(new LoginInterceptor());
registration.addPathPatterns("/**"); //所有路径都被拦截
registration.excludePathPatterns("/","/login","/error","/static/**","/qwe/**"); //添加不拦截路径
}
}
注意,要实现的接口是WebMvcConfigurer。
不拦截路径的写法是“/static/”。网上其他写法,比如/js/ , /static/js/**, 尝试过都没有效果,可能是因为spring Boot2.0的愿意把
在application.yml中这可以配置静态资源 不过要在上面增加不拦截 才会生效
mvc:
static-path-pattern: /qwe/**