zoukankan      html  css  js  c++  java
  • 拦截器和过滤器区别

    比如动态代理就是拦截器的简单实现, 
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable 

    Object result = null; 

    System.out.println("before invoke method :" + method.getName()); 

    result = method.invoke(this.targetObj, args); 

    System.out.println("after invoke method : " + method.getName()); 

    return result; 

    在你调用方法前打印出字符串(或者做其它业务逻辑的操作),也可以在你调用方法后打印出字符串, 
    甚至在你抛出异常的时候做业务逻辑的操作。 

    过滤器是在java web中,你传入的request,response提前过滤掉一些信息,或者提前设置一些参数,然后再传入servlet或者struts的 action进行业务逻辑,比如过滤掉非法url(不是login.do的地址请求,如果用户没有登陆都过滤掉),或者在传入servlet或者 struts的action前统一设置字符集,或者去除掉一些非法字符(聊天室经常用到的,一些骂人的话)

    、拦截器是基于java的反射机制的,而过滤器是基于函数回调
    2、过滤器依赖与servlet容器,而拦截器不依赖与servlet容器
    3、拦截器只能对action请求起作用,而过滤器则可以对几乎所有的请求

    起作用
    4、拦截器可以访问action上下文、值栈里的对象,而过滤器不能
    5、在action的生命周期中,拦截器可以多次被调用,而过滤器只能在容

    器初始化时被调用一次

    拦截器:是在面向切面编程的就是在你的service或者一个方法,前调用一个方法,或者在方法后调用一个方法比如动态代理就是拦截器的简单实现,在你调用方法前打印出字符串(或者做其它业务逻辑的操作),也可以在你调用方法后打印出字符串,甚至在你抛出异常的时候做业务逻辑的操作。

    下面通过实例来看一下过滤器和拦截器的区别:
    使用拦截器进行/admin 目录下jsp页面的过滤
    <package name="newsDemo" extends="struts-default"
     namespace="/admin">
     <interceptors>
     <interceptor name="auth" class="com.test.news.util.AccessInterceptor" />
     <interceptor-stack name="authStack">
     <interceptor-ref name="auth" />
     </interceptor-stack>
     </interceptors>
     <!-- action -->
     <action name="newsAdminView!*" class="newsAction"
     method="{1}">
     <interceptor-ref name="defaultStack"/>
     <interceptor-ref name="authStack">
     </interceptor-ref>
    下面是我实现的Interceptor class:
    package com.test.news.util;
    import java.util.Map;
    import com.opensymphony.xwork2.ActionContext;
    import com.opensymphony.xwork2.ActionInvocation;
    import com.opensymphony.xwork2.interceptor.AbstractInterceptor;
    import com.test.news.action.AdminLoginAction;

    public class AccessInterceptor extends AbstractInterceptor {

     private static final long serialVersionUID = -4291195782860785705L;

     @Override
     public String intercept(ActionInvocation actionInvocation) throws Exception {
     ActionContext actionContext = actionInvocation.getInvocationContext();
     Map session = actionContext.getSession();
     
     //except login action
     Object action = actionInvocation.getAction();
     if (action instanceof AdminLoginAction) {
     return actionInvocation.invoke();
     }
     //check session
     if(session.get("user")==null ){
     return "logout";
     }
     return actionInvocation.invoke();//go on
     }
    }
     过滤器:是在java web中,你传入的request,response提前过滤掉一些信息,或者提前设置一些参数,然后再传入servlet或者struts的 action进行业务逻辑,比如过滤掉非法url(不是login.do的地址请求,如果用户没有登陆都过滤掉),或者在传入servlet或者 struts的action前统一设置字符集,或者去除掉一些非法字符.
    使用过滤器进行/admin 目录下jsp页面的过滤,首先在web.xml进行过滤器配置:
     <filter>
     <filter-name>access filter</filter-name>
     <filter-class>
     com.test.news.util.AccessFilter
     </filter-class>
     </filter>
     <filter-mapping>
     <filter-name>access filter</filter-name>
     <url-pattern>/admin
     public void destroy() {
     }
     public void doFilter(ServletRequest arg0, ServletResponse arg1,
     FilterChain filterChain) throws IOException, ServletException {
     HttpServletRequest request = (HttpServletRequest)arg0;
     HttpServletResponse response = (HttpServletResponse)arg1;
     HttpSession session = request.getSession();
     if(session.getAttribute("user")== null && request.getRequestURI().indexOf("login.jsp")==-1 ){
     response.sendRedirect("login.jsp");
     return ;
     }
     filterChain.doFilter(arg0, arg1);
     }
     public void init(FilterConfig arg0) throws ServletException {
     }
    }

  • 相关阅读:
    Github优秀java项目集合(中文版)
    gradle 将依赖打入Jar包的方法
    早期malloc分配时,如果内存耗尽分配不出来,会直接返回NULL。现在分配不出来,直接抛出异常(可使用nothrow关键字)
    最想挖的各家互联网公司最牛职位人才(哪方面值得去、值得学)
    C++使用libcurl做HttpClient(业务观摩,用C++封装过程式代码,post和get的数据,最好url编码,否则+会变成空格)good
    【C/S通信交互之Http篇】Cocos2dx(Client)使用Curl与Jetty(Server)实现手机网游Http通信框架(内含解决curl.h头文件找不到问题)
    PHP模拟POST提交数据并获得返回值之CURL方法(使用PHP extension,然后使用php_curl.dll,很不错)
    SignalR实现B/S系统对windows服务运行状态的监测
    滴滴出行秋招编程题
    Tag Helpers 介绍
  • 原文地址:https://www.cnblogs.com/zxb555/p/7260657.html
Copyright © 2011-2022 走看看