当前位置:   article > 正文

spring boot拦截器内使用redisTemplate空指针_springboot redistemplate空

springboot redistemplate空

最近在做项目的过程中需要在拦截器中注入RedisTemplate对象,结果发现一直空指针。
拦截器代码如下:

@Configuration
public class WebConfig implements WebMvcConfigurer {

    /**
     * 注册自定义拦截器
     * @param registry
     */
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(new KeyValidateInterceptor());
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
@Component
public class KeyValidateInterceptor extends HandlerInterceptorAdapter {
    private Logger logger = LoggerFactory.getLogger(this.getClass());
    @Autowired
    private RedisTemplate redisTemplate;

    /**
     * 拦截校验project key
     * @param request 请求
     * @param response 相应
     * @param handler 操作
     * @return boolean
     * @throws Exception 异常
     */
    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) {
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

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

@Configuration
public class WebConfig implements WebMvcConfigurer {

    /**
     * 提前new出,防止redis失效
     * @return
     */
    @Bean
    public KeyValidateInterceptor getKeyValidateInterceptor(){
        return new KeyValidateInterceptor();
    }
    /**
     * 注册自定义拦截器
     * @param registry
     */
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(getKeyValidateInterceptor()).addPathPatterns("/redis/**").excludePathPatterns("/redis/center/**");
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

最主要的就是加入这段代码,并且添加拦截器的时候使用这个方法 而不是new拦截器。

	/**
     * 提前new出,防止redis失效
     * @return
     */
    @Bean
    public KeyValidateInterceptor getKeyValidateInterceptor(){
        return new KeyValidateInterceptor();
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/159942?site
推荐阅读
相关标签
  

闽ICP备14008679号