在springboot中拦截器Filter中注入bean失败解决方案

1缘由

在做SSO项目时整合了shiro,在写一个拦截器的时候(继承AccessControlFilter)在这里需要注入一个Bean.按正常的写法如下

    @Autowired
	private RedisUtil<Object, Object> redisUtil;

这是我的一个操作redis的工具类。
这样自动去注入当使用的时候是未NULL,是注入不进去了。通俗的来讲是因为拦截器在spring扫描bean之前加载所以注入不进去。

2解决方法

可以通过已经初始化之后applicationContext容器中去获取需要的bean.

public <T> T getBean(Class<T> clazz,HttpServletRequest request){
	    WebApplicationContext applicationContext = WebApplicationContextUtils.getRequiredWebApplicationContext(request.getServletContext());
	    return applicationContext.getBean(clazz);
	}

可以直接调用此方法得到想要的Bean

RedisUtil<String,Object> redisUtil = getBean(RedisUtil.class, request);

这样就可以直接使用了。

3注意*****

如果有其他配置类中有new 一个对象出来,这个对象是不会被springboot管理的,不管你在其他地方用什么方法去交给spring管理创建对象,怎么都会注入为null,所以怎么注入都为null时注意检查手动new的地方 !!

错误示例:
	SocketChannelInterceptor 这个对象是不会被spring管理的。
	@Override
	public void configureClientInboundChannel(ChannelRegistration registration) {
		registration.interceptors( new SocketChannelInterceptor());
	}

	@Override
	public void configureClientOutboundChannel(ChannelRegistration registration) {
		registration.interceptors( new SocketChannelInterceptor());
	}
正确示例:
    @Bean
	public SocketChannelInterceptor getSocketChannelInterceptor(){
		return  new SocketChannelInterceptor();
	}


	@Override
	public void configureClientInboundChannel(ChannelRegistration registration) {
		registration.interceptors( getSocketChannelInterceptor());
	}

	@Override
	public void configureClientOutboundChannel(ChannelRegistration registration) {
		registration.interceptors( getSocketChannelInterceptor());
	}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值