欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringBoot的拦截器中依赖注入为null的解决方法

程序员文章站 2024-02-13 23:39:22
该项目是基于springboot框架的maven项目。 今天在拦截器中处理拦截逻辑时需要使用注解调用其他方法 并且要从配置文件中读取参数。所以我使用了以下注解:...

该项目是基于springboot框架的maven项目。

今天在拦截器中处理拦截逻辑时需要使用注解调用其他方法 并且要从配置文件中读取参数。所以我使用了以下注解:

  @reference
  coreredisservice redisservice;

  @value("${channel}")
  private string channel;

  @value("${allowmethod}")
  private string allowmethod;

一个是获取接口的引用,两外两个是获取配置文件中的参数,

但是在debug过程中发现三个都没有注入进来出现了下图所示的情况:

SpringBoot的拦截器中依赖注入为null的解决方法 

可以看到三个值都为null。

然后我查看了我项目的配置,确定该拦截器的位置是否在注解的范围内。发现没问题, 百度了一下,发现了有个问题:拦截器加载的时间点在springcontext之前,所以在拦截器中注入自然为null

根据解决方法在配置拦截器链的类中先注入这个拦截器,代码如下:

package com.***;

import org.springframework.context.annotation.bean;
import org.springframework.context.annotation.configuration;
import org.springframework.web.servlet.config.annotation.interceptorregistry;
import org.springframework.web.servlet.config.annotation.webmvcconfigureradapter;

/**
 * 配置拦截器链
 * created by yefuliang on 2017/10/23.
 */
@configuration
public class bgqwebappconfigurer extends webmvcconfigureradapter {

  @bean
  public bgqcommoninterceptorl bgqcommoninterceptorl() {
    return new bgqcommoninterceptorl();
  }

  public void addinterceptors(interceptorregistry registry) {
    // 多个拦截器组成一个拦截器链
    // addpathpatterns 用于添加拦截规则
    // excludepathpatterns 用户排除拦截
    registry.addinterceptor(bgqcommoninterceptorl()).addpathpatterns("/**");
    super.addinterceptors(registry);
  }
}

注意注入的是拦截器类,不是你拦截器里面要注入的类,然后拦截器链的 registry.addinterceptor(bgqcommoninterceptorl()).addpathpatterns(“/**”);

里面的第一个参数就不需要你再重新new一个了。

改好之后debug:

SpringBoot的拦截器中依赖注入为null的解决方法 

可以看到,都注入了进来,问题解决。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。