spring 获取 WebApplicationContext的几种方法

spring 获取 WebApplicationContext的几种方法

使用ContextLoader

WebApplicationContext webApplicationContext = ContextLoader.getCurrentWebApplicationContext();

ServletContext servletContext = webApplicationContext.getServletContext();

下面转载自:http://www.blogjava.net/Todd/archive/2010/04/22/295112.html

方法一:在初始化时保存ApplicationContext对象
代码:
ApplicationContext ac = new FileSystemXmlApplicationContext("applicationContext.xml");
ac.getBean("beanId");
说明:这种方式适用于采用Spring框架的独立应用程序,需要程序通过配置文件手工初始化Spring的情况。

方法二:通过Spring提供的工具类获取ApplicationContext对象
代码:
import org.springframework.web.context.support.WebApplicationContextUtils;
ApplicationContext ac1 = WebApplicationContextUtils.getRequiredWebApplicationContext(ServletContext sc);
ApplicationContext ac2 = WebApplicationContextUtils.getWebApplicationContext(ServletContext sc);
ac1.getBean("beanId");
ac2.getBean("beanId");
说明:
这种方式适合于采用Spring框架的B/S系统,通过ServletContext对象获取ApplicationContext对象,然后在通过它获取需要的类实例。

上面两个工具方式的区别是,前者在获取失败时抛出异常,后者返回null。

其中 servletContext sc 可以具体 换成 servlet.getServletContext()或者 this.getServletContext() 或者 request.getSession().getServletContext(); 另外,由于spring是注入的对象放在ServletContext中的,所以可以直接在ServletContext取出 WebApplicationContext 对象: WebApplicationContext webApplicationContext = (WebApplicationContext) servletContext.getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);

方法三:继承自抽象类ApplicationObjectSupport
说明:抽象类ApplicationObjectSupport提供getApplicationContext()方法,可以方便的获取到ApplicationContext。
Spring初始化时,会通过该抽象类的setApplicationContext(ApplicationContext context)方法将ApplicationContext 对象注入。

方法四:继承自抽象类WebApplicationObjectSupport
说明:类似上面方法,调用getWebApplicationContext()获取WebApplicationContext

方法五:实现接口ApplicationContextAware
说明:实现该接口的setApplicationContext(ApplicationContext context)方法,并保存ApplicationContext 对象。
Spring初始化时,会通过该方法将ApplicationContext对象注入。

在web应用中一般用ContextLoaderListener加载webapplication,如果需要在action之外或者control类之外获取webapplication思路之一是,单独写个类放在static变量中,
类似于:

public class AppContext {

private static AppContext instance;

private AbstractApplicationContext appContext;

public synchronized static AppContext getInstance() {
    if (instance == null) {
      instance = new AppContext();
    }
    return instance;
  }

private AppContext() {
    this.appContext = new ClassPathXmlApplicationContext(
        "/applicationContext.xml");
  }

public AbstractApplicationContext getAppContext() {
    return appContext;
  }

不过这样,还是加载了2次applicationcontext,servlet一次,路径加载一次;觉得不如直接用路径加载,舍掉servlet加载
在网上也找了些其他说法:实现ApplicationContextAware,,, 接口,或者servletcontextAware接口,还要写配置文件。有的竟然要把配置文件里的listener,换成自己的类,这样纯粹多此一举。不过有的应用不是替换,是在补一个listener,
我在一版的jpetstore(具体那一版不知道)里发现了这个:
[web.xml]里

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    
    <listener>
        <listener-class>com.ibatis.jpetstore.util.SpringInit</listener-class>
    </listener>

其中SpringInit实现接口ServletContextListener :

package com.ibatis.jpetstore.util;

import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import org.springframework.context.ApplicationContext;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;

public class SpringInit implements ServletContextListener {

private static WebApplicationContext springContext;
    
    public SpringInit() {
        super();
    }
    
    public void contextInitialized(ServletContextEvent event) {
        springContext = WebApplicationContextUtils.getWebApplicationContext(event.getServletContext());
    }

public void contextDestroyed(ServletContextEvent event) {
    }
    
    public static ApplicationContext getApplicationContext() {
        return springContext;
    }

}

在其中的一个bean的构造里SpringInit获取applicationcontext,代码:

  public OrderBean() {
    this(
            (AccountService) SpringInit.getApplicationContext().getBean("accountService"),
            (OrderService) SpringInit.getApplicationContext().getBean("orderService") );
  }

恩,这种在action,servlet之外的bean里获取applicationcontext的方法值得参考,应该有用

Struts2 在Action中获取request、session、servletContext的三种方法

下面转载自:http://www.cnblogs.com/raphael5200/p/5114768.html

首页message.jsp:

  1. <body>
  2. ${requestScope.req }<br/>
  3. ${applicationScope.app }<br/>
  4. ${sessionScope.ses }<br/>
  5. </body>

(1)使用ActionContext获取

  1. public String sayHello(){
  2. ActionContext cxt=ActionContext.getContext();
  3. cxt.getApplication().put("app", "application范围");
  4. cxt.getSession().put("ses", "session范围");
  5. cxt.put("req", "request范围");
  6. return "message";
  7. }

(2)使用ServletActionContext获取

  1. public String sayTwo(){
  2. HttpServletRequest request=ServletActionContext.getRequest();
  3. ServletContext cxt=ServletActionContext.getServletContext();
  4. request.setAttribute("req", "request请求范围");
  5. request.getSession().setAttribute("ses", "会话范围");
  6. cxt.setAttribute("app", "应用程序范围");
  7. return "message";
  8. }

(3)通过继承ServletRequestAware,ServletContextAware 并实现set方法获取

      1. public class HelloAction implements ServletRequestAware,ServletContextAware{
      2. private HttpServletRequest request1;
      3. private ServletContext context1;
      4. public HelloAction(){}
      5. public String sayThree(){
      6. request1.setAttribute("req", "request请求范围111");
      7. request1.getSession().setAttribute("ses", "会话范围111");
      8. context1.setAttribute("app", "应用程序范围111");
      9. return "message";
      10. }
      11. @Override
      12. public void setServletRequest(HttpServletRequest arg0) {
      13. request1=arg0;
      14. }
      15. @Override
      16. public void setServletContext(ServletContext arg0) {
      17. context1=arg0;
      18. }
      19. }
上一篇:中文 iOS/Mac 开发博客列表(转)


下一篇:C# 工厂模式+虚方法(接口、抽象方法)实现多态