SpringBoot拦截器中使用RedisTemplate

这几天想着把登陆拦截器的验证规则修改一下,验证介质由session中获取改为从redis中获取,结果发现redisTemplate一直为空,

java 复制代码
@Configuration
public class WebInterceptorConfig implements WebMvcConfigurer {

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        //这种方式会拦截所有请求
        registry.addInterceptor(new MyInterceptor());
        //这种方式会拦截指定的请求
//        registry.addInterceptor(new MyInterceptor()).addPathPatterns("/helloInterceptor");
    }
}

上面是修改之前的拦截器代码,很简单,下面是拦截器部分的代码

java 复制代码
public class MyInterceptor implements HandlerInterceptor {

    @Autowired
    private RedisTemplate<String, Object> redisTemplate;

    @Override
    public boolean preHandle(HttpServletRequest request, @NotNull HttpServletResponse response, Object handler) throws Exception {
      //自定义拦截规则
    }
  
  }

可以看到这里使用了ioc自动注入的方式来获取我们预定义好的RedisTemplate对象,但是在调试的过程中失败了,发生了NPE

仔细一想,拦截器在SpringContext初始化之前就执行了,Bean初始化之前它就执行了,所以它肯定是无法获取SpringIOC容器中的内容的。那么我们就让拦截器执行的时候实例化拦截器Bean,在拦截器配置类里面先实例化拦截器,然后再获取就能解决这个问题啦。

下面是修改过后的代码:

javascript 复制代码
public class WebInterceptorConfig implements WebMvcConfigurer {

    @Bean
    public MyInterceptor getLoginHandlerInterceptor(){
        return new MyInterceptor();
    }
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        //这种方式会拦截所有请求
        registry.addInterceptor(getLoginHandlerInterceptor());
    }
}

项目启动,完美解决!

相关推荐
mghio8 小时前
Dubbo 中的集群容错
java·微服务·dubbo
Asthenia04128 小时前
Spring AOP 和 Aware:在Bean实例化后-调用BeanPostProcessor开始工作!在初始化方法执行之前!
后端
Asthenia04129 小时前
什么是消除直接左递归 - 编译原理解析
后端
Asthenia04129 小时前
什么是自上而下分析 - 编译原理剖析
后端
Asthenia041210 小时前
什么是语法分析 - 编译原理基础
后端
Asthenia041210 小时前
理解词法分析与LEX:编译器的守门人
后端
uhakadotcom10 小时前
视频直播与视频点播:基础知识与应用场景
后端·面试·架构
Asthenia041211 小时前
Spring扩展点与工具类获取容器Bean-基于ApplicationContextAware实现非IOC容器中调用IOC的Bean
后端
bobz96511 小时前
ovs patch port 对比 veth pair
后端