`
huangjinjin520
  • 浏览: 70820 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

如何使用Spring管理Filter和Servlet

阅读更多
在使用spring容器的web应用中,业务对象间的依赖关系都可以用context.xml文件来配置,并且由spring容器来负责依赖对象 的创建。如果要在filter或者servlet中使用spring容器管理业务对象,通常需要使用WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext())来获得WebApplicationContext,然后调用WebApplicationContext.getBean(“beanName”)来获得对象的引用,这实际上是使用了依赖查找来获得对象,并且在filter或者servlet代码中硬编码了应用对象的bean名字。为了能在filter或者servlet中感知spring中bean,可采用如下步骤来实现:
        1、将filter或者servlet作为bean定义在context.xml文件中,和要应用的bean定义放在一起;
        2、实现一个filter代理或者servlet代理,该代理用WebApplicationContext来获得在context.xml中定义的filter或者servlet的对象,并将任务委托给context.xml中定义的filter或者servlet
       3、在web.xml中用ContextLoaderListener来初始化spring  的context,同时在filter代理或者servlet代理的定义中用初始化参数来定义context.xml中filter或者servlet的bean名字(或者直接受用代理的名称获得相应的filter或者servlet的名称)。
       4、在web.xml中定义filter代理或者servlet代理的mapping。
       利用这种方式就将filter或者servlet和业务对象的依赖关系用spring  来进行管理,并且不用在servlet中硬编码要引用的对象名字。具体实例如下:
1、spring与web配置
1.1  在applicationContext.xml中定义filter
      <bean id="springFilter" class="com.sirui.filter.SpringFilter"> 
              <property name="name"> 
                  <value>SpringFilter</value> 
              </property> 
       </bean>
       说明:com.sirui.filter.SpringFilter为实现了javax.servlet.Filter接口的filter
        实现filter代理 实际上,filter代理不需要我们自己来实现,Spring提供了两种现成的filter代理 org.springframework.security.util.FilterToBeanProxy, org.springframework.web.filter.DelegatingFilterProxy,两者只是在web.xml中的配置上略有不同,下面就让我们一起看看如何在web.xml中进行配置。
1.2. 配置web.xml
     初始化spring的context ,因为是使用spring来管理,所以在使用filter前先要初始化spring的context,一般来说配置如下:
<context-param> 
    <param-name>contextConfigLocation</param-name> 
    <param-value>  
             /WEB-INF/applicationContext.xml 
     </param-value> 
     </context-param> 
     <listener> 
     <listener-class> 
          org.springframework.web.context.ContextLoaderListener 
     </listener-class> 
  </listener>
2、Filter配置:
2.1 FilterToBeanProxy
<filter> 
        <filter-name> springFilter </filter-name> 
        <filter-class>org.springframework.security.util.FilterToBeanProxy 
        </filter-class> 
        <init-param> 
            <param-name>targetBean</param-name> 
            <param-value>springFilter</param-value> 
        </init-param> 
    </filter>
    说明:需要为FilterToBeanProxy提供上下文参数,这里我们配置的是targetBean属性,它告诉spring在context中查找的bean名称,所以当请求被过滤器拦截后FilterToBeanProxy会在applicationContext.xml中会查找id为springFilter的bean.我们也可以配置targetClass属性,意思就是查找该类型的bean.
2.2 DelegatingFilterProxy
<filter> 
        <filter-name>springFilter</filter-name> 
        <filter-class> 
            org.springframework.web.filter.DelegatingFilterProxy 
        </filter-class> 
</filter>
说明:使用DelegatingFilterProxy时不需要配置任何参数,spring会根据filter-name的名字来查找bean,所以这里spring会查找id为springFilter的bean.
2.3  配置filter的mapping
<filter-mapping> 
        <filter-name>springFilter</filter-name> 
        <url-pattern>/*</url-pattern> 
   </filter-mapping>
filter配置完成。推荐使用DelegatingFilterProxy,应为配置上更简单。


3、Servlet 配置
   Servlet的配置与Filter的配置十分相似
3.1 在applicationContext.xml中定义servlet
      <bean id="springServlet" class="com.sirui.servlet.SpringServlet"> 
              <property name="name"> 
                  <value>SpringServlet</value> 
             </property> 
       </bean>
说明:com.sirui.servlet.SpringServlet继承自 javax.servlet.http.HttpServlet
3.2   实现servlet代理,与filter不同,spring没有为servlet提供代理实现,需要我们自己来创建,不过放心,创建一个servlet代理十分简单,一个具体的实现如下:
package com.sirui.servlet;
import java.io.IOException; 
import javax.servlet.GenericServlet; 
import javax.servlet.Servlet; 
import javax.servlet.ServletException; 
import javax.servlet.ServletRequest; 
import javax.servlet.ServletResponse; 
import org.springframework.web.context.WebApplicationContext; 
import org.springframework.web.context.support.WebApplicationContextUtils; 
 
public class ServletToBeanProxy extends GenericServlet { 
    private String targetBean; 
    private Servlet proxy; 
    public void init() throws ServletException { 
                this.targetBean = getInitParameter("targetBean"); 
                getServletBean(); 
            proxy.init(getServletConfig()); 
  } 
  public void service(ServletRequest req, ServletResponse res) 
           throws ServletException, IOException { 
          proxy.service(req, res); 
    } 
    private void getServletBean() { 
              WebApplicationContext wac = WebApplicationContextUtils 
                .getRequiredWebApplicationContext(getServletContext()); 
                this.proxy = (Servlet) wac.getBean(targetBean); 
    } 
}
说明:相信看了代码就明白了,它利用targetBean属性在spring中查找相应的servlet,这很像FilterToBeanProxy的方式,所以我为其取名为ServletToBeanProxy。当然,我们也可以使用类似于DelegatingFilterProxy的方式,只需要将上述代码中标记为黄色的部分修改为this.targetBean=this.getServletName();即可,我们相应的命名为DelegatingServletProxy。
        配置web.xml和初始化spring的context 与filter中的说明一致,不再赘述。        
3.3  ServletToBeanProxy
<servlet> 
        <servlet-name>springServlet</servlet-name> 
        <servlet-class> 
            com.sirui.servlet.proxy.ServletToBeanProxy 
        </servlet-class> 
        <init-param> 
            <param-name>targetBean</param-name> 
            <param-value>springServlet</param-value> 
        </init-param> 
        <load-on-startup>1</load-on-startup> 
   </servlet>
3.4DelegatingServletProxy
<servlet> 
        <servlet-name>springServlet</servlet-name> 
        <servlet-class> 
            com.sirui.servlet.proxy.DelegatingServletProxy 
        </servlet-class> 
        <load-on-startup>1</load-on-startup> 
    </servlet>
3.5  配置servlet的mapping
<filter-mapping> 
        <filter-name>springServlet</filter-name> 
        <url-pattern>/servlet/*</url-pattern> 
    </filter-mapping>
servlet的配置完成。推荐使用DelegatingServletProxy,应为配置上更简单。

更多技术分享尽在java乐园

  • 大小: 39.9 KB
分享到:
评论

相关推荐

    Spring 管理filter 和servlet

    通过Spring管理Filter和Servlet,不仅可以充分利用Spring的依赖注入能力,简化Filter和Servlet的配置,还能增强代码的可维护性和可扩展性。开发者无需在Filter或Servlet内部硬编码bean名称,而是通过Spring容器自动...

    Spring Boot 中的Servlet简单使用

    在Spring Boot中,Servlet的使用变得非常简便,因为Spring Boot内置了Servlet容器,如Tomcat或Jetty,这些容器会自动处理Servlet的注册和管理。本文将详细介绍如何在Spring Boot中添加自定义Servlet。 首先,Spring...

    web.xml文件中配置(servlet, spring, filter, listenr)的加载顺序

    Spring框架是Java平台的一个广泛使用的框架,用于管理对象的生命周期和依赖注入。在`web.xml`中配置Spring时,通常通过Listener来加载Spring容器,这样可以在应用程序启动时初始化所有的Spring Bean。 **示例代码:...

    基于Spring和Mybatis和servlet的人员信息管理系统.zip

    【标题】基于Spring和Mybatis和servlet的人员信息管理系统 这个系统是计算机科学与技术领域的一个典型项目,主要用于教学目的,如毕业设计、课程设计或毕设项目。它涉及了Web开发中的多个核心技术,包括Spring框架...

    Servlet Filter 的单元测试

    同时,为了模拟Servlet容器环境,可能还需要使用如Tomcat Embedder或Spring Boot的TestRestTemplate等工具。 对于文件"2007-02-06-xyq.eip"和"Servlet UT",它们可能是具体的测试代码或测试数据。在实际的开发环境...

    Servlet之Filter深入讲解及实例研究

    Spring提供了一种更方便的方式来注册和管理Filter,即通过`@WebFilter`注解或Spring的`FilterRegistrationBean`。 7. **实例研究** 在给定的链接`http://blog.csdn.net/evankaka/article/details/45480101`中,博...

    Spring4 In Action-7.1.2-添加其他的Servlet和Filter

    Spring4 In Action-7.1.2-添加其他的Servlet和Filter,Spring4 In Action-7.1.2-添加其他的Servlet和Filter,Spring4 In Action-7.1.2-添加其他的Servlet和Filter

    servlet之Filter使用范例--登陆验证

    在实际开发中,Filter还可以与其他组件如Authentication Manager或Security框架(如Spring Security)结合,以实现更复杂的身份验证和授权逻辑。同时,Filter也常用于实现跨站请求伪造(CSRF)防护、内容编码(如...

    spring boot 开发 servlet filters listeners

    尽管 Spring MVC 控制器可以处理大部分的 Web 请求,但在某些场景下,我们可能还需要使用到 Servlet、Filter 和 Listener 这些技术来增强应用的功能。 #### 二、Servlet、Filter 和 Listener 的作用 1. **Servlet*...

    Spring Boot使用Servlet及Filter过程详解

    Spring Boot 使用 Servlet ...Spring Boot 使用 Servlet 及 Filter 过程可以通过两种方式来实现,分别是 Servlet 3.0+ 版本和 Servlet 2.5 版本。在这两种方式中,我们都可以使用 Servlet 和 Filter 来处理 HTTP 请求。

    spring MVC所需jar包和filter的配置

    在开发基于Spring MVC的Web应用程序时,正确配置所需的jar包和Filter是至关重要的步骤。Spring MVC是一个强大的MVC(Model-View-Controller)框架,它为构建Java Web应用提供了丰富的功能和灵活性。以下是对标题和...

    使用filter拦截servlet和jsp页面的内容,进行过滤后输出

    在实际开发中,我们可能会借助一些框架或工具来简化Filter的使用,如Spring MVC的`@WebFilter`注解,可以更方便地注册和配置Filter。 总之,Servlet Filter是Java Web开发中不可或缺的一部分,它允许我们在请求和...

    特殊情况(ActionForm,Servlet, Filter, Listener)下Spring如何注入对象

    总之,面对ActionForm、Servlet、Filter、Listener这些特殊情况,我们需要灵活运用Spring的DI机制,结合静态字段、工厂方法以及Web容器的特性,以确保对象的正确注入和管理。同时,随着技术的发展,如Spring Boot和...

    spring-boot-04-servlet.rar

    在Spring Boot 04-servlet的学习笔记中,我们将深入探讨如何配置和使用Servlet容器,特别是针对Spring Boot的集成特性。这篇笔记将涵盖以下几个关键知识点: 1. **Servlet容器简介**: Servlet容器,如Tomcat、...

    Spring Security如何在Servlet中执行

    Spring Security 是一个强大的安全框架,专门用于处理Java应用的安全需求,包括认证和授权。在Servlet环境中,Spring Security通过集成到Servlet的...理解这些核心概念对于有效地使用和定制Spring Security至关重要。

    基于Jsp+Tomcat+Filter+Servlet的学生管理系统.zip

    这个项目是一个基于Web的教育管理系统的实现,采用的技术栈主要包括JSP、Tomcat服务器、Filter和Servlet。这是一个非常适合初学者入门和实践的项目,它涵盖了Web开发中的基本概念和技术。 **1. JSP(JavaServer ...

    servlet用户管理系统

    - **EJB(Enterprise JavaBeans)** 或 **Spring框架**:在大型项目中,可能会使用这些框架来管理事务、提供依赖注入和更高级的持久化机制。 总的来说,"servlet用户管理系统"是一个典型的Web应用实例,涵盖了...

    spring-boot 过滤器 filter

    Filter的生命周期由Servlet容器管理,包括初始化、服务和销毁三个阶段。初始化时,容器会调用`init()`方法;每当有请求匹配到过滤器时,会调用`doFilter()`方法;当应用停止或服务器关闭时,会调用`destroy()`方法。...

    Servlet--2.filter

    在这个主题"Servlet--2.filter"中,我们将深入探讨Filter的使用和重要性。 首先,我们来理解一下Servlet。Servlet是Java编程语言中的一个接口,它使得Java类能够响应来自Web客户端(如浏览器)的请求。Servlet主要...

Global site tag (gtag.js) - Google Analytics