获取Spring管理的对象WebApplicationContext为空解决方法
由于业务需求,new 了个对象,不受spring容器托管,但是这个对象里面的方法里需要引用spring容器管理的一些对象,所以@Autowrited那些注入就没法用了,于是只能通过获取spring容器然后再从容器里取出来WebApplicationContext wc = ContextLoader.getCurrentWebApplicationContext();Object xx = wc.
·
由于业务需求,new 了个对象,不受spring容器托管,但是这个对象里面的方法里需要引用spring容器管理的一些对象,所以@Autowrited那些注入就没法用了,于是只能通过获取spring容器然后再从容器里取出来
WebApplicationContext wc = ContextLoader.getCurrentWebApplicationContext();
Object xx = wc.getBean("xxx");
但是wc为空了。。
于是只能写了个工具类实现
implements ApplicationContextAware接口
实现Spring ApplicationContextAware接口与DisposableBean接口,实现特殊注入
Spring中的ApplicationContextAware接口的使用
这个接口的作用
当一个类实现ApplicationContextAware接口后,当这个类被spring加载后,就能够在这个类中获取到spring的上下文操作符ApplicationContext,通过ApplicationContext 就能够轻松的获取所有的spring管理的bean。
原因是
通过实现ApplicationContextAware接口中的setApplicationContext方法,我们可以获取到spring操作上下文applicationContext变量,然后把它复制给SpringApplicationContext 的静态变量applicationContext,这样我们就可以通过SpringApplicationContext .applicationContext.getBean()的方式后去到spring管理的bean。
最后附上工具类
@Component
@Lazy(false)
public class SpringApplicationContext implements ApplicationContextAware, DisposableBean {
private static ApplicationContext applicationContext = null;
private SpringApplicationContext () {
}
public static ApplicationContext getApplicationContext() {
return applicationContext;
}
public static <T> T getBean(String name) {
return (T) applicationContext.getBean(name);
}
public static <T> T getBean(Class<T> requiredType) {
return applicationContext.getBean(requiredType);
}
//清除SpringContextHolder中的ApplicationContext:
public static void clearHolder() {
applicationContext = null;
}
@Override
public void setApplicationContext(ApplicationContext applicationContext) {
SpringApplicationContext.applicationContext = applicationContext;
}
@Override
public void destroy() throws Exception {
clearHolder();
}
}
更多推荐
已为社区贡献5条内容
所有评论(0)