方法一在初始化時保存ApplicationContext對象
代碼
ApplicationContext ac = new FileSystemXmlApplicationContex(applicationContextxml);
acgetBean(beanId);
說明
這種方式適用於采用Spring框架的獨立應用程序需要程序通過配置文件手工初始化Spring的情況
方法二通過Spring提供的工具類獲取ApplicationContext對象
代碼
import orgsprntextsupportWebApplicationContextUtils;
ApplicationContext ac = WebApplicationContextUtilsgetRequiredWebApplicationContext(ServletContext sc)
ApplicationContext ac = WebApplicationContextUtilsgetWebApplicationContext(ServletContext sc)
acgetBean(beanId);
acgetBean(beanId);
說明
這種方式適合於采用Spring框架的B/S系統通過ServletContext對象獲取ApplicationContext對象然後在通過它獲取需要的類實例上面兩個工具方式的區別是前者在獲取失敗時拋出異常後者返回null
其中 servletContext sc 可以具體 換成 servletgetServletContext()或者 thisgetServletContext() 或者 requestgetSession()getServletContext();
另外由於spring是注入的對象放在ServletContext中的所以可以直接在ServletContext取出WebApplicationContext 對象
WebApplicationContext webApplicationContext = (WebApplicationContext) servletContextgetAttribute(WebApplicationContextROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);
方法三繼承自抽象類ApplicationObjectSupport
說明
抽象類ApplicationObjectSupport提供getApplicationContext()方法可以方便的獲取到ApplicationContextSpring初始化時會通過該抽象類的setApplicationContext(ApplicationContext context)方法將ApplicationContext 對象注入
方法四繼承自抽象類WebApplicationObjectSupport
說明
類似上面方法調用getWebApplicationContext()獲取WebApplicationContext
方法五實現接口ApplicationContextAware
說明
實現該接口的setApplicationContext(ApplicationContext context)方法並保存ApplicationContext 對象Spring初始化時會通過該方法將ApplicationContext 對象注入
以上方法適合不同的情況請根據具體情況選用相應的方法
這裡值得提一點的是系統中用到上述方法的類實際上就於Spring框架緊密耦合在一起了因為這些類是知道它們是運行在Spring框架上的因此系統中應該盡量的減少這類應用使系統盡可能的獨立於當前運行環境盡量通過DI的方式獲取需要的服務提供者
然後在Action中編寫如下代碼得到Context(我是覆蓋了Struts Action的setServlet方法也許還有更好的方法)
public void setServlet(ActionServlet servlet){
supersetServlet(servlet);
ServletContext servletContext = servletgetServletContext();
WebApplicationContext wac = WebApplicationContextUtilsgetRequiredWebApplicationContext(servletContext);
// get yours beans
}
我需要在spring的bean中直接獲取這下可和我們常規的操作有些不同因為spring的bean都是pojo的根本見不著servletconfig和servletcontext的影子
這裡我需要指出spring給我們提供了兩個接口orgsprntextServletContextAware和
orgsprntextServletConfigAware我們可以讓我們的bean實現上邊的任何一個接口就能獲取到servletContext了
代碼如下
public class DicBean implements ServletContextAware{
private ServletContext servletContext;
public void setServletContext(ServletContext sc) {
thisservletContext=sc;
Systemoutprintln(項目的絕對路徑為+servletContextgetRealPath(/));
}
}
From:http://tw.wingwit.com/Article/program/Java/ky/201311/28433.html