当前位置:   article > 正文

过滤器和拦截器比较及实现未登录跳转登录页的方式_拦截器和过滤器哪个验证登录更快

拦截器和过滤器哪个验证登录更快

看了一下午的文档,对Filter(过滤器)和Interceptor(拦截器)有了更深入的理解,下面主要记录对这两个在未登录时自动跳转登录页面的实现的一些自己的理解。

首先要求拦截未登录自动跳转登录页面这种场景,用Filter(过滤器)和Interceptor(拦截器)都能够实现。

但Filter(过滤器)和Interceptor(拦截器)有以下差异。

1、拦截器是基于java的反射机制的;而过滤器是基于函数回调 。 
2、过滤器的实现与struts2、spring等框架无关,在用户请求被相应前执行,它依赖与servlet容器;而拦截器由Spring管理,不依赖与servlet容器,拦截器只对action起作用,不能拦截jsp页面、图片等其他资源。 
3、拦截器只能对action请求起作用,而过滤器则可以对几乎所有的请求起作用(比如jsp、html、js、css、图片等) 。 
4、拦截器可以访问action上下文、值栈里的对象,而过滤器不能 。 
5、在action的生命周期中,拦截器可以多次被调用,而过滤器只能在容器初始化时被调用一次 。
6、过滤器的配置在web.xml中,而拦截器的配置在基于使用的mvc框架不同在不同的xml配置中(如Strust2在strust.xml,而springmvc在spring-mvc.xml中)。
7、Filter是Servlet规范规定的,只能用于Web程序中。而拦截器既可以用于Web程序,也可以用于Application、Swing程序中。 
8、拦截器是一个Spring的组件,归Spring管理,配置在Spring文件中,因此能使用Spring里的任何资源、对象,例如Service对象、数据源、
事务管理等,通过IOC注入到拦截器即可;而Filter则不能。
9、Filter在只在Servlet前后起作用。而拦截器能够深入到方法前后、
异常抛出前后等,因此拦截器的使用具有更大的弹性。
10、Filter根据mapping配置的先后顺序;Interceptor也是按照配置的顺序,但是可以通过order控制顺序。

  

其实用Filter和Interceptor都能实现拦截未登录自动跳转登录页,但是在实际我接触过的项目(主要是一些企业级开发的项目,用户量并不太大)中基本上使用的都是Filter。

注意:Interceptor是针对action的拦截,如果知道jsp地址的话在URL栏直接输入JSP的地址,那么拦截器是没有效果的,可以通过把所有的jsp放到WEB-INF下面避免。


下面是从网上摘的Filter(过滤器)和Interceptor(拦截器)实现拦截的案例

Filter过滤器实现

配置:web.xml

  1. <filter>
  2. <filter-name>RightFilter</filter-name>
  3. <filter-class>com.***.rights.RightFilter</filter-class>
  4. </filter>
  5. <filter-mapping>
  6. <filter-name>RightFilter</filter-name>
  7. <url-pattern>*.jsp</url-pattern>
  8. </filter-mapping>
  9. <filter-mapping>
  10. <filter-name>RightFilter</filter-name>
  11. <url-pattern>*.action</url-pattern>
  12. </filter-mapping>

java代码:

  1. mport java.io.IOException;
  2. import javax.servlet.Filter;
  3. import javax.servlet.FilterChain;
  4. import javax.servlet.FilterConfig;
  5. import javax.servlet.ServletException;
  6. import javax.servlet.ServletRequest;
  7. import javax.servlet.ServletResponse;
  8. import javax.servlet.http.HttpServlet;
  9. import javax.servlet.http.HttpServletRequest;
  10. import javax.servlet.http.HttpServletResponse;
  11. import javax.servlet.http.HttpSession;
  12. public class RightFilter extends HttpServlet implements Filter {
  13. public void doFilter(ServletRequest arg0, ServletResponse arg1,
  14. FilterChain arg2) throws IOException, ServletException {
  15. HttpServletResponse response = (HttpServletResponse) arg1;
  16. HttpServletRequest request=(HttpServletRequest)arg0;
  17. HttpSession session = request.getSession(true);
  18. String usercode = (String) session.getAttribute("usercode");//
  19. String url=request.getRequestURI();
  20. if(usercode==null || usercode.equals(""))
  21. {
  22. //判断获取的路径不为空且不是访问登录页面或执行登录操作时跳转
  23. if(url!=null && !url.equals("") && ( url.indexOf("Login")<0 && url.indexOf("login")<0 ))
  24. {
  25. response.sendRedirect("登录路径");
  26. return ;
  27. }
  28. }
  29. //已通过验证,用户访问继续
  30. arg2.doFilter(arg0, arg1);
  31. return;
  32. }
  33. public void init(FilterConfig arg0) throws ServletException {
  34. // TODO Auto-generated method stub
  35. }

Interceptor拦截器实现(struts框架):

ps:struts2通过继承AbstractInterceptor抽象类实现拦截器

配置:struts.xml

  1. <interceptors>
  2. <!--定义一个名为authority的拦截器-->
  3. <interceptor class="com.***.rights.RightInterceptor" name="rightInterceptor"/>
  4. <!--定义一个包含权限检查的拦截器栈-->
  5. <interceptor-stack name="mydefault">
  6. <!--配置内建默认拦截器-->
  7. <interceptor-ref name="defaultStack"/>
  8. <!--配置自定义的拦截器-->
  9. <interceptor-ref name="rightInterceptor"/>
  10. </interceptor-stack>
  11. </interceptors>
  12. <default-interceptor-ref name="mydefault" />
  13. <!--定义全局Result-->
  14. <global-results>
  15. <result name="login">Login.jsp</result>
  16. <result name="error">/error.jsp </result>
  17. </global-results>

java代码:

  1. import java.util.HashMap;
  2. import java.util.Map;
  3. import com.opensymphony.xwork2.Action;
  4. import com.opensymphony.xwork2.ActionInvocation;
  5. import com.opensymphony.xwork2.interceptor.AbstractInterceptor;
  6. import com.opensymphony.xwork2.ActionContext;
  7. public class RightInterceptor extends AbstractInterceptor {
  8. @Override
  9. public String intercept(ActionInvocation invocation) throws Exception {
  10. //System.out.println("拦截器开始验证");
  11. try
  12. {
  13. ActionContext actionContext = ActionContext.getContext();
  14. Map<String,Object> session = actionContext.getSession();
  15. String user=session.get("usercode").toString();
  16. //当前用户session无效且访问的action不是登录action时,执行拦截,跳转
  17. if((user==null || user.equals("")) && !invocation.getAction().getClass().getName().equals("登录action"))
  18. {
  19. return Action.LOGIN;
  20. }
  21. }
  22. catch(Exception e)
  23. {
  24. e.printStackTrace();
  25. return Action.LOGIN;
  26. }
  27. //System.out.println("拦截器通过验证");
  28. return invocation.invoke();//执行访问的action
  29. }
  30. }

Interceptor拦截器实现(springmvc框架):

ps:springmvc通过实现HandlerInterceptor接口实现拦截器

配置:spring-mvc.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:aop="http://www.springframework.org/schema/aop"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:mvc="http://www.springframework.org/schema/mvc"
  6. xmlns:tx="http://www.springframework.org/schema/tx"
  7. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  8. xmlns:p="http://www.springframework.org/schema/p"
  9. xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
  10. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  11. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
  12. http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
  13. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
  14. <!-- 扫描controller(controller层注入) -->
  15. <context:component-scan base-package="com.bybo.aca.web.controller"/>
  16. <mvc:interceptors>
  17. <mvc:interceptor>
  18. <!-- 拦截所有URL中包含/user/的请求 -->
  19. <mvc:mapping path="/user/**"/>
  20. <!-- 不进行拦截 -->
  21. <mvc:exclude-mapping path="/index.html"/>
  22. <bean class="com.jikexueyuan.demo.springmvc.lesson4.interceptor.LoginInterceptor"></bean>
  23. </mvc:interceptor>
  24. </mvc:interceptors>
  25. <!-- 定义跳转的文件的前后缀 ,视图模式配置-->
  26. <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  27. <!-- 自动给后面action的方法return的字符串加上前缀和后缀,变成一个 可用的url地址 -->
  28. <property name="prefix" value="/WEB-INF/page/"/>
  29. <property name="suffix" value=".jsp"/>
  30. </bean>
  31. </beans>

java代码:

  1. package com.jikexueyuan.demo.springmvc.lesson4.interceptor;
  2. import javax.servlet.http.HttpServletRequest;
  3. import javax.servlet.http.HttpServletResponse;
  4. import org.springframework.web.servlet.HandlerInterceptor;
  5. import org.springframework.web.servlet.ModelAndView;
  6. import com.jikexueyuan.demo.springmvc.lesson4.constant.Global;
  7. public class LoginInterceptor implements HandlerInterceptor {
  8. @Override
  9. public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
  10. Object user = request.getSession().getAttribute(Global.USER_SESSION_KEY);
  11. if (user == null) {
  12. System.out.println("尚未登录,调到登录页面");
  13. response.sendRedirect("/loginpage.html");
  14. return false;
  15. }
  16. return true;
  17. }
  18. @Override
  19. public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
  20. System.out.println("postHandle");
  21. }
  22. @Override
  23. public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
  24. System.out.println("afterCompletion");
  25. }
  26. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/程序诗人/article/detail/61354
推荐阅读
相关标签
  

闽ICP备14008679号