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过程中发现三个都没有注入进来出现了下图所示的情况:
可以看到三个值都为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:
可以看到,都注入了进来,问题解决。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Java实现的校验银行卡功能示例
下一篇: Java实现的猜数字游戏示例
推荐阅读
-
SpringBoot的拦截器中依赖注入为null的解决方法
-
SpringBoot的拦截器中依赖注入为null的解决方法
-
jboss 中 jsf 中 setter 字符串提交为空串时bean属性不能为NULL的解决方法 jboss
-
mybatis注入Date日期值为null的解决方法
-
springboot拦截器无法注入redisTemplate的解决方法
-
记录Spring依赖注入时值为Null的问题
-
SpringBoot中添加拦截器,在拦截器中注入其他类的时候出现空指针异常解决办法
-
SpringBoot中添加拦截器,在拦截器中注入其他类的时候出现空指针异常解决办法
-
mybatis注入Date日期值为null的解决方法
-
springboot拦截器无法注入redisTemplate的解决方法