标签:使用拦截器的方法过滤特性 methodfilterintercep
如果我们希望对Action中的部分方法实现拦截,Struts2为了实现方法过滤的功能,定义了一个名为MethodFilterInterceptor的类,该类继承了AbstractInterceptor。若想自定义的拦截器能够实现方法过滤的功能可以继承MethodFilterInterceptor类,该类重写了父类AbstractInterceptor的intercept方法,又提供了一个doIntercept的抽象方法,在此方法中用户可以自定义拦截器。标签:使用拦截器的方法过滤特性 methodfilterintercep
原文地址:http://blog.csdn.net/qq_20545159/article/details/45622187