与过滤器的区别 :
1. 是基于java的反射机制的,而过滤器是基于函数回调。
2. 不依赖与servlet容器,过滤器依赖与servlet容器。
3. 只能对action请求起作用,而过滤器则可以对几乎所有的请求起作用。
4. 可以访问action上下文、值栈里的对象,而过滤器不能访问。
5. 在action的生命周期中,可以多次被调用,而过滤器只能在容器初始化时被调用一次
的代码实现(以struts2为例):
1、在xml文件中如何定义
class="com.xxxx.web.FilterIPActionInterceptor" />
2、怎么遍别写自定义
public class FilterIPActionInterceptor extends AbstractInterceptor
{
/** 日志控制. */
private final Log log = LogFactory.getLog(getClass());
/**
* @see com.opensymphony.xwork2.interceptor.AbstractInterceptor#intercept(com.opensymphony.xwork2.ActionInvocation)
*/
@Override