码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot的拦截器中依赖注入报空指针问题

时间:2018-04-23 18:42:52      阅读:609      评论:0      收藏:0      [点我收藏+]

标签:webconfig   bean   ddp   示例   方法   exclude   gis   bsp   clu   

原因:拦截器加载的时间点在springcontext之前,所以在拦截器中注入自然为null ;

解决方法:配置拦截器链的类中先注入这个拦截器,示例:

 

@Configuration

public class WebConfig extends WebMvcConfigurerAdapter {

    //注入拦截器类

    @Bean

    public LocaleInterceptor localeInterceptor  () {

        return new LocaleInterceptor();

    }

 

    public void addInterceptors(InterceptorRegistry registry) {

        // 多个拦截器组成一个拦截器链

        // addPathPatterns 用于添加拦截规则

        // excludePathPatterns 用户排除拦截

        registry.addInterceptor(localeInterceptor()).addPathPatterns("/**");

        super.addInterceptors(registry);

    }

}

 

SpringBoot的拦截器中依赖注入报空指针问题

标签:webconfig   bean   ddp   示例   方法   exclude   gis   bsp   clu   

原文地址:https://www.cnblogs.com/y-blog/p/8920399.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!