码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-05-08 16:05:38      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:tle   net   操作   生命周期   frame   lan   spring   title   servlet   

本文转自: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(委派过滤器代理类)使用

标签:tle   net   操作   生命周期   frame   lan   spring   title   servlet   

原文地址:http://www.cnblogs.com/520playboy/p/6824956.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!