最近写了一个拦截器,主要是做一个接口调用次数的增量更库。项目启动后,访问请求,报了500,当场炸裂。
先将我写的拦截器代码奉上
public class InterfaceURLInterceptor implements HandlerInterceptor {
@Autowired
private ITraDataPublicInfoService service;
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)
throws Exception {
// 这里写业务逻辑,就不做展示了
// 去库中查询url
TraDataPublicInfo dataPublicInfo = service.selectByUrl(matchUrl);
return true;
}
}
导致500的错误,就是这行代码
TraDataPublicInfo dataPublicInfo = service.selectByUrl(matchUrl);
这里的service为Null了,说明上面使用@Autowired
注入失败
,为什么呢?
原因
:是因为
拦截器的加载在springcontext之前
,所以自动注入的service是Null
解决办法
:
在添加拦截器之前用@Bean注解将拦截器注入工厂,接着添加拦截器
我们来看看之前拦截器的配置
@Configuration
public class InterceptorConfig extends WebMvcConfigurerAdapter {
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(new InterfaceURLInterceptor()).addPathPatterns("/tra/**");
super.addInterceptors(registry);
}
}
现在注册到拦截器列队中的方式,是new出来的,我们稍稍做一下修改:
@Configuration
public class InterceptorConfig extends WebMvcConfigurerAdapter {
@Bean
public InterfaceURLInterceptor interfaceURLInterceptor() {
return new InterfaceURLInterceptor();
}
@Override
public void addInterceptors(InterceptorRegistry registry) {
// 这里不再使用new Intercepter()
// 而是上面写的interfaceURLInterceptor()方法
registry.addInterceptor(interfaceURLInterceptor()).addPathPatterns("/tra/**");
}
}
这样,问题就解决了~
原创文章,有不足之处还请各路大神多多指点,多多包涵。
如需转载,请标明出处,不胜感激。
—— 码上仙
版权声明:本文为qq_36949163原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。