您的位置:首页 > 编程语言 > Java开发

web项目的servlet和filter中获取spring上下文

2013-07-19 11:30 465 查看
之前一直是在web项目中使用struts2然后通过plugin集成spring,action生成的细节全部由plugin实现了,对于我们是透明的。过几天学校留个作业只能用普通的jsp+servlet做,之前一直是透明的使用spring,对spring的初始化及bean的获取一直没什么概念。这回正好用的上,就研究了一下ContextLoaderListener ContextLoader和StrutsSpringObjectFactory的源码。经过一番阅读对spring的初始化和获取bean有了一些印象。

    在spring中的org.springframework.beans.factory.BeanFactory接口getBean(String id)用来获取spring管理的bean。而我们一般使用实现了该接口的ApplicationContext接口。所以只要我们在servlet中取得了ApplicationContext接口的实现类,就可以获取spring管理的bean了。

    首先是在web.xml中配置listener

Java代码


 




<listener>   
    <listener-class>   
        org.springframework.web.context.ContextLoaderListener   
    </listener-class>   
</listener>  

<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
     这个类的核心代码如下

//实例化一个ContextLoader,然后调用它的initWebApplicationContext方法

Java代码


 




public void contextInitialized(ServletContextEvent event) {   
     this.contextLoader = createContextLoader();   
     this.contextLoader.initWebApplicationContext(event.getServletContext());   
}   
  
protected ContextLoader createContextLoader() {   
      return new ContextLoader();   
}  

public void contextInitialized(ServletContextEvent event) {
this.contextLoader = createContextLoader();
this.contextLoader.initWebApplicationContext(event.getServletContext());
}

protected ContextLoader createContextLoader() {
return new ContextLoader();
}
    ContextLoader这个类内的代码就不写了,看不太明白。然后一个必须的类是WebApplicationContextUtils,该类有一个方法getWebApplicationContext(ServletContext servletContext),这个方法的官方解释是: Find the root WebApplicationContext for this web application, which is typically loaded via ContextLoaderListener
or ContextLoaderServlet。它的大概意思就是这个方法通过ContextLoaderListener获取WebApplicationContext。所以在servlet中就可以通过如下方法实现获取spring上下文

Java代码


 




import javax.servlet.http.HttpServlet;   
  
import org.springframework.context.ApplicationContext;   
import org.springframework.web.context.support.WebApplicationContextUtils;   
  
public class NewServlet extends HttpServlet {   
      
    public ApplicationContext getApplicationContext(){   
        return WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());   
    }   
}  

import javax.servlet.http.HttpServlet;

import org.springframework.context.ApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;

public class NewServlet extends HttpServlet {

public ApplicationContext getApplicationContext(){
return WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());
}
}


    使用方法

Java代码


 




public void test(){   
        TestBean testBean=(TestBean)this.getApplicationContext().getBean("testBean");   
    }  

public void test(){
TestBean testBean=(TestBean)this.getApplicationContext().getBean("testBean");
}
   在filter里面server会给它注入一个FilterConfig对象,在filter里可以使用FilterConfig的filterConfig.getServletContext()方法获取servlet上下文,所以在filter里获取spring的上下文方法如下

public ApplicationContext getApplicationContext() {

    return WebApplicationContextUtils.getWebApplicationContext(filterConfig.getServletContext());

}

转自:http://blog.csdn.net/zhiweiv/archive/2008/10/21/3118857.aspx
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐