springboot 不能访问静态资源问题

在项目中访问静态资源, 突然就404了 , 百思不得其解 , 查阅资料才发现
是自己的拦截器问题 , 所有 带有
WebMvc 字样的 类 注解 都会使springboot默认配置路径失效 . 所以解决办法
第一种可以继承WebMvcConfigurerAdapter,当然如果是1.8+WebMvcConfigurerAdapter这个类以及过时了,可以直接实现WebMvcConfigurer接口,然后重写addInterceptors来添加拦截器:

@Configuration
public class InterceptorConfig implements WebMvcConfigurer {

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(new UserInterceptor()).addPathPatterns("/user/**");
        WebMvcConfigurer.super.addInterceptors(registry);
    }

}

或者还是继承WebMvcConfigurationSupport,然后重写addResourceHandlers方法:

@Configuration
public class InterceptorConfig extends WebMvcConfigurationSupport {

    @Override
    protected void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(new UserInterceptor()).addPathPatterns("/user/**");
        super.addInterceptors(registry);
    }

    @Override
    protected void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/**").addResourceLocations("classpath:/static/");
        super.addResourceHandlers(registry);
    } 
}

原文链接:
     https://www.acgist.com/article/488.html

你可能感兴趣的:(springboot,springboot)