该项目是基于springboot框架的maven项目。
今天在拦截器中处理拦截逻辑时需要使用注解调用其他方法 并且要从配置文件中读取参数。所以我使用了以下注解:
1
2
3
4
5
6
7
8
|
@reference
coreredisservice redisservice;
@value ( "${channel}" )
private string channel;
@value ( "${allowmethod}" )
private string allowmethod;
|
一个是获取接口的引用,两外两个是获取配置文件中的参数,
但是在debug过程中发现三个都没有注入进来出现了下图所示的情况:
可以看到三个值都为null。
然后我查看了我项目的配置,确定该拦截器的位置是否在注解的范围内。发现没问题, 百度了一下,发现了有个问题:拦截器加载的时间点在springcontext之前,所以在拦截器中注入自然为null
根据解决方法在配置拦截器链的类中先注入这个拦截器,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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:
可以看到,都注入了进来,问题解决。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/qq_33206732/article/details/78422157