SpringBoot拦截器使用@Autowired注入接口为null解决方法

Posted weknow619

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot拦截器使用@Autowired注入接口为null解决方法相关的知识,希望对你有一定的参考价值。

最近使用SpringBoot的自定义拦截器,在拦截器中注入了一个DAO,准备下面作相应操作,拦截器代码:

public class TokenInterceptor implements HandlerInterceptor {
    @Autowired
    private ITokenDao tokenDao;
    
    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object o) throws Exception {
     
    }
    
    ...
}

配置信息代码:

@Configuration
public class InterceptorConfig extends WebMvcConfigurerAdapter {
    
    /**
     *
     * @param registry
     */
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(new TokenInterceptor())
                .excludePathPatterns("/user/login");
        super.addInterceptors(registry);
    }

}

看似没有问题,但运行结果发现Token拦截器中注入的DAO为null。

原因

造成null的原因是因为拦截器加载是在springcontext创建之前完成的,所以在拦截器中注入实体自然就为null。

解决

解决方法就是让bean提前加载,将配置信息修改为如下:

@Configuration
public class InterceptorConfig extends WebMvcConfigurerAdapter {

    @Bean
    public HandlerInterceptor getTokenInterceptor(){
        return new TokenInterceptor();
    }
    
    /**
     *
     * @param registry
     */
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(getTokenInterceptor())
                .excludePathPatterns("/user/login");
        super.addInterceptors(registry);
    }

}

重新运行DAO即可注入成功。

 

以上是关于SpringBoot拦截器使用@Autowired注入接口为null解决方法的主要内容,如果未能解决你的问题,请参考以下文章

spring boot filter -Autowired

springboot2.0 使用拦截器后,导致静态文件访问不到的解决方案

springboot怎么让自定义的拦截器优先于pagehelper执行

拦截器中@Autowired注入失效,获取service解决

springboot加载自定义properties原理

SpringBoot常用注解:@Resource/@Component与@Autowired的使用