日期:2014-05-17  浏览次数:20772 次

Spring3MVC怎么获取上下文路径?
WebApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(ServletActionContext.getServletContext());

不用Struts2中的ServletActionContext.getServletContext(),怎么实现?

也就是怎么传入上下文呢?

WebApplicationContext org.springframework.web.context.support.WebApplicationContextUtils.getWebApplicationContext(ServletContext sc)



------解决方案--------------------
不用struts2的话,就要自己手动配置初始化上下文了。

我前段时间做的项目的实例,不用strust2,手动获取。。。

package com.wb.sms.protocol.sms;

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;

/**
 * 
 * 获取spring容器,以访问容器中定义的其他bean
 * 
 * @author KOUYI
 * 
 */
public class SpringContextUtil implements ApplicationContextAware {

// Spring应用上下文环境
private static ApplicationContext applicationContext;

/**
* 实现ApplicationContextAware接口的回调方法,设置上下文环境

* @param applicationContext
*/
public void setApplicationContext(ApplicationContext applicationContext) {
SpringContextUtil.applicationContext = applicationContext;
}

/**
* @return ApplicationContext
*/
public static ApplicationContext getApplicationContext() {
return applicationContext;
}

/**
* 获取对象 这里重写了bean方法,起主要作用

* @param name
* @return Object 一个以所给名字注册的bean的实例
* @throws BeansException
*/
public static Object getBean(String name) throws BeansException {
return applicationContext.getBean(name);
}

}

spring配置文件:为SpringContextUtil类配置上下文
<bean name="springContext" class="com.wb.sms.protocol.sms.SpringContextUtil"></bean>

<bean id="ISmsRespService" class="com.wb.sms.service.imp.SmsRespServiceImp">
<property name="dao">
<ref bean="smsRespDAO" />
</property>
</bean>

使用:
// 初始化ISmsRespService服务,非action的spring服务
ISmsRespService service =(ISmsRespService) SpringContextUtil.getBean("ISmsRespService");