DelegatingFilterProxy(委派过滤器代理类)使用

Posted 坏~牧羊人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DelegatingFilterProxy(委派过滤器代理类)使用相关的知识,希望对你有一定的参考价值。

本文转自:http://blog.csdn.net/flyingfalcon/article/details/8543898

DelegatingFilterProxy就是一个对于servlet filter的代理,用这个类的好处主要是通过spring容器来管理servlet filter的生命周期,还有就是如果filter中需要一些Spring容器的实例,可以通过spring直接注入,另外读取一些配置文件这些便利的操作都可以通过Spring来配置实现。

 

DelegatingFilterProxy的使用方法,

 

首先在web.xml中配置:

<filter>
   <filter-name>myFilter</filter-name>
   <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
  </filter>

  <filter-mapping>
   <filter-name>myFilter</filter-name>
   <url-pattern>/*</url-pattern>
  </filter-mapping>

 

然后在Spring的配置文件中,配置具体的Filter类的实例。

<bean name="myFilter"class="com.*.MyFilter"></bean>

 

在Spring中配置的bean的name要和web.xml中的<filter-name>一样

 

或者在DelegatingFilterProxy的filter配置中配置初始参数:targetBeanName,对应到Spring配置中的beanname

 

如果要保留Filter原有的init,destroy方法的调用,还需要配置初始化参数targetFilterLifecycle为true,该参数默认为false

以上是关于DelegatingFilterProxy(委派过滤器代理类)使用的主要内容,如果未能解决你的问题,请参考以下文章

spring之DelegatingFilterProxy

DelegatingFilterProxy 中的 NoSuchBeanDefinitionException

DelegatingFilterProxy 的独立 Spring 上下文

spring DelegatingFilterProxy 过滤器 的原理及运用

ClassLoader的双亲委派机制,源码

ClassNotFoundException DelegatingFilterProxy