项目中,用到了SpringMVC框架。在一个监听中,需要调用server层,并且通过注入的方式,实例化server层。
网上找了很多,提到利用ApplicationContextAware来获取SpringMVC上下文生成的server层。
例如下:
package com.xsp.onlineshop.web.comm;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;
/**
* SpringContextUtil
*
* @author
*/
@Component
public class SpringContextUtil implements ApplicationContextAware {
private static ApplicationContext applicationContext; // Spring应用上下文环境
/*
*
* 实现了ApplicationContextAware 接口,必须实现该方法;
*
* 通过传递applicationContext参数初始化成员变量applicationContext
*/
public void setApplicationContext(ApplicationContext applicationContext)
throws BeansException {
SpringContextUtil.applicationContext = applicationContext;
}
public static ApplicationContext getApplicationContext() {
return applicationContext;
}
@SuppressWarnings("unchecked")
public static T getBean(String name) throws BeansException {
return (T) applicationContext.getBean(name);
}
}
但是,在运行的时候,遇到了各种各样的问题。
现记录如下:
1,调用时,取得的ApplicationContext 为null
ApplicationContext beanFactory= SpringContextUtil.getApplicationContext();
CheckPayTask checkPayTask = beanFactory.getBean(CheckPayTask.class);
运行时,beanFactory为null。原因是SpringContextUtil自身没有被注册。
明明
在解决这个问题之前,先要弄清楚,Spring上下文和SpringMVC上下文。
先看配置,Spring上下文配置,在Web.xml里
contextConfigLocation
classpath:resources/spring.xml
org.springframework.web.context.ContextLoaderListener
spring.xml里面配置的bean属于Spring上下文。
SpringMVC上下文配置,在Web.xml里
SpringMVC
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath:resources/spring-mvc.xml
1
true
spring-mvc.xml里面配置的bean属于SpringMVC上下文。
注意:SpringMVC上下文和Spring上下文是分开独立,两者是父子关系。Spring 父<->SpringMVC 子。但是SpringMVC上下文是可以取得Spring上下文。反之则不行。
在tomcat服务启动日志中可以看到,root WebApplicationContext就是Spring的。
再回头来看,我们的SpringContextUtil,它应该放在Spring里面来设置,才有效。放在SpringMVC里面是没法完成自动实例化的。
问题1,就是由于我把SpringContextUtil的配置放在了spring-mvc.xml了。
问题2,beanFactory不为null,checkPayTask为null。
其实同问题1一样,既然SpringContextUtil是Spring里面实例化的bean,从中取得的bean,自然也都是Spring的bean。所以checkPayTask这个bean的设置要放在spring.xml里面才对。
PS:其实最开始说的“利用ApplicationContextAware来获取SpringMVC上下文生成的server层”是不对的,应该是利用ApplicationContextAware来获取Spring上下文生成的server层。