springboot设置静态资源不拦截的方法

Posted 城南少年与猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot设置静态资源不拦截的方法相关的知识,希望对你有一定的参考价值。

springboot设置静态资源不拦截的方法

springboot不拦截静态资源需配置如下的类:

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

@Configuration
public class MyWebMvcConfigurerAdapter extends WebMvcConfigurerAdapter {
    /**
     * 配置静态访问资源
     * @param registry
     */
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
        super.addResourceHandlers(registry);
    }
}

以上是关于springboot设置静态资源不拦截的方法的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot实现静态资源映射,登录功能以及访问拦截验证——以黑马瑞吉外卖为例

SpringBoot中静态资源访问方案

springboot配置拦截器不能放行静态资源

spring boot整合security 4,怎么设置忽略的静态资源?

SpringBoot下静态资源处理

SpringBoot+SpringSecurity误拦截静态资源问题调研