过滤器,拦截器,监听器

1.过滤器

Servlet中的过滤器Filter是实现了javax.servlet.Filter接口的服务器端程序,主要的用途是过滤字符编码、做一些业务逻辑判断等。其工作原理是,只要你在web.xml文件配置好要拦截的客户端请求,它都会帮你拦截到请求,此时你就可以对请求或响应(Request、Response)统一设置编码,简化操作;同时还可进行逻辑判断,如用户是否已经登陆、有没有权限访问该页面等等工作。它是随你的web应用启动而启动的,只初始化一次,以后就可以拦截相关请求,只有当你的web应用停止或重新部署的时候才销毁,以下通过过滤编码的代码示例来了解它的使用:

 

[c-sharp]  view plain copy
  1.  MyCharsetFilter.java 编码过滤器   
  2. package ...;   
  3. import ...;   
  4. // 主要目的:过滤字符编码;其次,做一些应用逻辑判断等.   
  5. // Filter跟web应用一起启动   
  6. // 当web应用重新启动或销毁时,Filter也被销毁   
  7. public class MyCharsetFilter implements Filter {   
  8.      private FilterConfig config = null;   
  9.      public void destroy() {   
  10.          System.out.println("MyCharsetFilter准备销毁...");   
  11.      }   
  12.     
  13.      public void doFilter(ServletRequest arg0, ServletResponse arg1, FilterChain chain) throws IOException, ServletException {   
  14.          // 强制类型转换   
  15.          HttpServletRequest request = (HttpServletRequest)arg0;   
  16.          HttpServletResponse response = (HttpServletResponse)arg1;   
  17.          // 获取web.xm设置的编码集,设置到Request、Response中         request.setCharacterEncoding(config.getInitParameter("charset"));          response.setContentType(config.getInitParameter("contentType"));          response.setCharacterEncoding(config.getInitParameter("charset"));            
  18.         // 将请求转发到目的地   
  19.          chain.doFilter(request, response);   
  20.      }   
  21.     
  22.      public void init(FilterConfig arg0) throws ServletException {   
  23.          this.config = arg0;   
  24.          System.out.println("MyCharsetFilter初始化...");   
  25.      }   
  26.  }   
 

以下是 MyCharsetFilter.java 在web.xml 中配置: 

[c-sharp]  view plain copy
  1. <filter>   
  2.       <filter-name>filter</filter-name>   
  3.       <filter-class>dc.gz.filters.MyCharsetFilter</filter-class>   
  4.       <init-param>   
  5.           <param-name>charset</param-name>   
  6.           <param-value>UTF-8</param-value>   
  7.       </init-param>   
  8.       <init-param>   
  9.           <param-name>contentType</param-name>   
  10.           <param-value>text/html;charset=UTF-8</param-value>   
  11.       </init-param>   
  12.   </filter>   
  13.   <filter-mapping>   
  14.       <filter-name>filter</filter-name>   
  15.       <!-- * 代表截获所有的请求  或指定请求/test.do  /xxx.do -->   
  16.       <url-pattern>/*</url-pattern>   
  17.   </filter-mapping>   
 

     以上的例子简单的说明了Filter的使用,具体其他的应用可以看具体的场景。 

2.监听器

现在来说说Servlet的监听器Listener,它是实现了javax.servlet.ServletContextListener 接口的服务器端程序,它也是随web应用的启动而启动,只初始化一次,随web应用的停止而销毁。主要作用是: 做一些初始化的内容添加工作、设置一些基本的内容、比如一些参数或者是一些固定的对象等等。下面利用监听器对数据库连接池DataSource的初始化演示它的使用: 

[c-sharp]  view plain copy
  1. MyServletContextListener.java   
  2.  package dc.gz.listeners;   
  3.  import javax.servlet.ServletContext;   
  4.  import javax.servlet.ServletContextEvent;   
  5.  import javax.servlet.ServletContextListener;   
  6.  import org.apache.commons.dbcp.BasicDataSource;   
  7.     
  8.   /**  
  9.   * Web应用监听器  
  10.   */   
  11.  public class MyServletContextListener implements ServletContextListener {     
  12.      // 应用监听器的销毁方法   
  13.      public void contextDestroyed(ServletContextEvent event) {   
  14.          ServletContext sc = event.getServletContext();   
  15.          // 在整个web应用销毁之前调用,将所有应用空间所设置的内容清空   
  16.          sc.removeAttribute("dataSource");   
  17.         System.out.println("销毁工作完成...");   
  18.      }   
  19.     
  20.      // 应用监听器的初始化方法   
  21.      public void contextInitialized(ServletContextEvent event) {   
  22.          // 通过这个事件可以获取整个应用的空间   
  23.          // 在整个web应用下面启动的时候做一些初始化的内容添加工作   
  24.          ServletContext sc = event.getServletContext();   
  25.          // 设置一些基本的内容;比如一些参数或者是一些固定的对象   
  26.          // 创建DataSource对象,连接池技术 dbcp   
  27.          BasicDataSource bds = new BasicDataSource();   
  28.          bds.setDriverClassName("com.mysql.jdbc.Driver");                       bds.setUrl("jdbc:mysql://localhost:3306/hibernate");   
  29.          bds.setUsername("root");   
  30.          bds.setPassword("root");   
  31.          bds.setMaxActive(10);//最大连接数   
  32.          bds.setMaxIdle(5);//最大管理数   
  33.          //bds.setMaxWait(maxWait); 最大等待时间   
  34.          // 把 DataSource 放入ServletContext空间中,   
  35.          // 供整个web应用的使用(获取数据库连接)   
  36.          sc.setAttribute("dataSource", bds);   
  37.          System.out.println("应用监听器初始化工作完成...");   
  38.          System.out.println("已经创建DataSource...");   
  39.      }   
  40.  }   
 

web.xml中配置如下,很简单:

[c-sharp]  view plain copy
  1. <!-- 配置应用监听器  -->   
  2.   <listener>   
  3.       <listener-class>dc.gz.listeners.MyServletContextListener</listener-class>   
  4.   </listener>   
 

这样配置好了之后,以后在web应用中就可以通过ServletContext取得BasicDataSource对象,从而获取与数据库的连接,提高性能,方便使用。

3.拦截器

拦截器是在面向切面编程中应用的,就是在你的service或者一个方法前调用一个方法,或者在方法后调用一个方法。是基于JAVA的反射机制。拦截器不是在web.xml,比如struts在struts.xml中配置,

[c-sharp]  view plain copy
  1. public Object invoke(Object proxy, Method method, Object[] args) throws Throwable  
  2. {  
  3. Object result = null;  
  4. System.out.println("before invoke method :" + method.getName());  
  5. result = method.invoke(this.targetObj, args);  
  6. System.out.println("after invoke method : " + method.getName());  
  7. return result;  
  8. }  

=============================================================================================================================

首先,要跟大家道个歉,前一阵子为给客户个一个DEMO,忙得不可开交,所以很久没有更新Blog。提到这个DEMO我想顺便跟大家分享一下心得——如果大家希望快速开发,一个类似Struts 2这样的简单方便的WEB框架必不可少。我们在开发DEMO使用的还是Struts 1.2.8,而且没有不使用任何EL(表达式语言),导致页面出现无数类似“<%= ((Integer) request.getAttribute("xx")).intValue()%6 %>”的代码。Struts 1.x的Form Bean的麻烦使得有部分同事直接使用request.getParameter(String arg),继而引入另一种麻烦。诸如此类的问题,在DEMO这样时间紧迫的项目凸显了Struts 1.x对快速开发的无能为力。不过没办法,由于我们项目中的几个资深员工除了Struts 1.x外,对其它的WEB框架似乎不大感兴趣。

言归正传,Interceptor(以下译为拦截器)是Struts 2的一个强有力的工具,有许多功能(feature)都是构建于它之上,如国际化转换器校验等。

什么是拦截器

拦截器,在AOP(Aspect-Oriented Programming)中用于在某个方法或字段被访问之前,进行拦截然后在之前或之后加入某些操作。拦截是AOP的一种实现策略。

在Webwork的中文文档的解释为——拦截器是动态拦截Action调用的对象。它提供了一种机制可以使开发者可以定义在一个action执行的前后执行的代码,也可以在一个action执行前阻止其执行。同时也是提供了一种可以提取action中可重用的部分的方式。

谈到拦截器,还有一个词大家应该知道——拦截器链(Interceptor Chain,在Struts 2中称为拦截器栈Interceptor Stack)。拦截器链就是将拦截器按一定的顺序联结成一条链。在访问被拦截的方法或字段时,拦截器链中的拦截器就会按其之前定义的顺序被调用。

实现原理

Struts 2的拦截器实现相对简单。当请求到达Struts 2的ServletDispatcher时,Struts 2会查找配置文件,并根据其配置实例化相对的拦截器对象,然后串成一个列表(list),最后一个一个地调用列表中的拦截器,如图1所示。

图1 拦截器调用序列图 
图1 拦截器调用序列图

已有的拦截器

Struts 2已经为您提供丰富多样的,功能齐全的拦截器实现。大家可以到struts2-all-2.0.1.jar或struts2-core-2.0.1.jar包的struts-default.xml查看关于默认的拦截器与拦截器链的配置。

在本文使用是Struts 2的最新发布版本2.0.1。需要下载的朋友请点击以下链接:
http://apache.justdn.org/struts/binaries/struts-2.0.1-all.zip

以下部分就是从struts-default.xml文件摘取的内容:

<  interceptor  name  ="alias"  class  ="com.opensymphony.xwork2.interceptor.AliasInterceptor"  /> 
<  interceptor  name  ="autowiring"  class  ="com.opensymphony.xwork2.spring.interceptor.ActionAutowiringInterceptor"  /> 
<  interceptor  name  ="chain"  class  ="com.opensymphony.xwork2.interceptor.ChainingInterceptor"  /> 
<  interceptor  name  ="conversionError"  class  ="org.apache.struts2.interceptor.StrutsConversionErrorInterceptor"  /> 
<  interceptor  name  ="createSession"  class  ="org.apache.struts2.interceptor.CreateSessionInterceptor"  /> 
<  interceptor  name  ="debugging"  class  ="org.apache.struts2.interceptor.debugging.DebuggingInterceptor"  /> 
<  interceptor  name  ="external-ref"  class  ="com.opensymphony.xwork2.interceptor.ExternalReferencesInterceptor"  /> 
<  interceptor  name  ="execAndWait"  class  ="org.apache.struts2.interceptor.ExecuteAndWaitInterceptor"  /> 
<  interceptor  name  ="exception"  class  ="com.opensymphony.xwork2.interceptor.ExceptionMappingInterceptor"  /> 
<  interceptor  name  ="fileUpload"  class  ="org.apache.struts2.interceptor.FileUploadInterceptor"  /> 
<  interceptor  name  ="i18n"  class  ="com.opensymphony.xwork2.interceptor.I18nInterceptor"  /> 
<  interceptor  name  ="logger"  class  ="com.opensymphony.xwork2.interceptor.LoggingInterceptor"  /> 
<  interceptor  name  ="model-driven"  class  ="com.opensymphony.xwork2.interceptor.ModelDrivenInterceptor"  /> 
<  interceptor  name  ="scoped-model-driven"  class  ="com.opensymphony.xwork2.interceptor.ScopedModelDrivenInterceptor"  /> 
<  interceptor  name  ="params"  class  ="com.opensymphony.xwork2.interceptor.ParametersInterceptor"  /> 
<  interceptor  name  ="prepare"  class  ="com.opensymphony.xwork2.interceptor.PrepareInterceptor"  /> 
<  interceptor  name  ="static-params"  class  ="com.opensymphony.xwork2.interceptor.StaticParametersInterceptor"  /> 
<  interceptor  name  ="scope"  class  ="org.apache.struts2.interceptor.ScopeInterceptor"  /> 
<  interceptor  name  ="servlet-config"  class  ="org.apache.struts2.interceptor.ServletConfigInterceptor"  /> 
<  interceptor  name  ="sessionAutowiring"  class  ="org.apache.struts2.spring.interceptor.SessionContextAutowiringInterceptor"  /> 
<  interceptor  name  ="timer"  class  ="com.opensymphony.xwork2.interceptor.TimerInterceptor"  /> 
<  interceptor  name  ="token"  class  ="org.apache.struts2.interceptor.TokenInterceptor"  /> 
<  interceptor  name  ="token-session"  class  ="org.apache.struts2.interceptor.TokenSessionStoreInterceptor"  /> 
<  interceptor  name  ="validation"  class  ="com.opensymphony.xwork2.validator.ValidationInterceptor"  /> 
<  interceptor  name  ="workflow"  class  ="com.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor"  /> 
<  interceptor  name  ="store"  class  ="org.apache.struts2.interceptor.MessageStoreInterceptor"  /> 
<  interceptor  name  ="checkbox"  class  ="org.apache.struts2.interceptor.CheckboxInterceptor"  /> 
<  interceptor  name  ="profiling"  class  ="org.apache.struts2.interceptor.ProfilingActivationInterceptor"  />

配置和使用拦截器

在struts-default.xml中已经配置了以上的拦截器。如果您想要使用上述拦截器,只需要在应用程序struts.xml文件中通过“<include file="struts-default.xml" />”将struts-default.xml文件包含进来,并继承其中的struts-default包(package),最后在定义Action时,使用“<interceptor-ref name="xx" />”引用拦截器或拦截器栈(interceptor stack)。一旦您继承了struts-default包(package),所有Action都会调用拦截器栈 ——defaultStack。当然,在Action配置中加入“<interceptor-ref name="xx" />”可以覆盖defaultStack。

下面是关于拦截器timer使用的例子。首先,新建Action类tuotrial/TimerInterceptorAction.java,内容如下:

  package  tutorial;

  import  com.opensymphony.xwork2.ActionSupport;

  public  class  TimerInterceptorAction  extends  ActionSupport  {
    @Override
    
 public String execute() {
        
 try {
            
 // 模拟耗时的操作 
 
           Thread.sleep( 500 );
        }
 
catch (Exception e) {
            e.printStackTrace();
        }
 

        
 return SUCCESS;
    }
 

}

配置Action,名为Timer,配置文件如下:

<!  DOCTYPE struts PUBLIC
        "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
        "http://struts.apache.org/dtds/struts-2.0.dtd"
  > 
<  struts  > 
    
<  include  file  ="struts-default.xml"  />     
    
<  package  name  ="InterceptorDemo"  extends  ="struts-default"  > 
        
<  action  name  ="Timer"  class  ="tutorial.TimerInterceptorAction"  > 
            
<  interceptor-ref  name  ="timer"  /> 
            
<  result  >  /Timer.jsp  </  result  > 
        
</  action  > 
    
</  package  > 
</  struts  >

至于Timer.jsp可以随意写些什么到里面。发布运行应用程序,在浏览器的地址栏键入http://localhost:8080/Struts2_Interceptor/Timer.action,在出现Timer.jsp页面后,查看服务器的后台输出。

2006  -  12  -  6  14  :  27  :  32  com.opensymphony.xwork2.interceptor.TimerInterceptor doLog
信息: Executed action 
[  //Timer!execute  ]  took  2859  ms.

在您的环境中执行Timer!execute的耗时,可能上述的时间有些不同,这取决于您PC的性能。但是无论如何,2859 ms与500 ms还是相差太远了。这是什么原因呢?其实原因是第一次加载Timer时,需要进行一定的初始工作。当你重新请求Timer.action时,以上输出会变为:

2006  -  12  -  6  14  :  29  :  18  com.opensymphony.xwork2.interceptor.TimerInterceptor doLog
信息: Executed action 
[  //Timer!execute  ]  took  500  ms.

OK,这正是我们期待的结果。上述例子演示了拦截器timer的用途——用于显示执行某个action方法的耗时,在我们做一个粗略的性能调试时,这相当有用。

自定义拦截器

作为“框架(framework)”,可扩展性是不可或缺的,因为世上没有放之四海而皆准的东西。虽然,Struts 2为我们提供如此丰富的拦截器实现,但是这并不意味我们失去创建自定义拦截器的能力,恰恰相反,在Struts 2自定义拦截器是相当容易的一件事。

 

大家在开始着手创建自定义拦截器前,切记以下原则:
拦截器必须是无状态的,不要使用在API提供的ActionInvocation之外的任何东西。

要求拦截器是无状态的原因是Struts 2不能保证为每一个请求或者action创建一个实例,所以如果拦截器带有状态,会引发并发问题。

所有的Struts 2的拦截器都直接或间接实现接口com.opensymphony.xwork2.interceptor.Interceptor。除此之外,大家可能更喜欢继承类com.opensymphony.xwork2.interceptor.AbstractInterceptor。

以下例子演示通过继承AbstractInterceptor,实现授权拦截器。

首先,创建授权拦截器类tutorial.AuthorizationInterceptor,代码如下:

  package  tutorial;

  import  java.util.Map;

  import  com.opensymphony.xwork2.Action;
  import  com.opensymphony.xwork2.ActionInvocation;
  import  com.opensymphony.xwork2.interceptor.AbstractInterceptor;

  public  class  AuthorizationInterceptor  extends  AbstractInterceptor  {

    @Override
    
 public String intercept(ActionInvocation ai) throws Exception {
        Map session 
= ai.getInvocationContext().getSession();
        String role 
= (String) session.get( " ROLE " );
        
 if ( null != role) {
            Object o 
= ai.getAction();
            
 if (o instanceof RoleAware) {
                RoleAware action 
= (RoleAware) o;
                action.setRole(role);
            }
 

            
 return ai.invoke();
        }
 
else {
            
 return Action.LOGIN;
        }
 
       
    }
 

 
}

以上代码相当简单,我们通过检查session是否存在键为“ROLE”的字符串,判断用户是否登陆。如果用户已经登陆,将角色放到Action中,调用Action;否则,拦截直接返回Action.LOGIN字段。为了方便将角色放入Action,我定义了接口tutorial.RoleAware,代码如下:

  package  tutorial;

  public  interface  RoleAware  {
    
 void setRole(String role);
}

接着,创建Action类tutorial.AuthorizatedAccess模拟访问受限资源,它作用就是通过实现RoleAware获取角色,并将其显示到ShowUser.jsp中,代码如下:

  package  tutorial;

  import  com.opensymphony.xwork2.ActionSupport;

  public  class  AuthorizatedAccess  extends  ActionSupport  implements  RoleAware  {
    
 private String role;
    
    
 public void setRole(String role) {
        
 this .role = role;
    }
 

    
    
 public String getRole() {
        
 return role;
    }
 

 
    @Override
    
 public String execute() {
        
 return SUCCESS;
    }
 

}

以下是ShowUser.jsp的代码:

<%  @ page  contentType  =  "  text/html; charset=UTF-8  "  %> 
<%  @taglib prefix  =  "  s  "  uri  =  "  /struts-tags  "  %> 
<  html  > 
<  head  > 
    
<  title  >  Authorizated User  </  title  > 
</  head  > 
<  body  > 
    
<  h1  >  Your role is:  <  s:property  value  ="role"  /></  h1  > 
</  body  > 
</  html  >

然后,创建tutorial.Roles初始化角色列表,代码如下:

  package  tutorial;

  import  java.util.Hashtable;
  import  java.util.Map;


  public  class  Roles  {
    
 public Map < String, String > getRoles() {
        Map
 < String, String > roles = new Hashtable < String, String > ( 2 );
        roles.put(
 " EMPLOYEE " " Employee " );
        roles.put(
 " MANAGER " " Manager " );
        
 return roles;
    }
 

}

接下来,新建Login.jsp实例化tutorial.Roles,并将其roles属性赋予<s:radio>标志,代码如下:

<%  @ page  contentType  =  "  text/html; charset=UTF-8  "  %> 
<%  @taglib prefix  =  "  s  "  uri  =  "  /struts-tags  "  %> 
<  html  > 
<  head  > 
    
<  title  >  Login  </  title  > 
</  head  > 
<  body  > 
    
<  h1  >  Login  </  h1  > 
    Please select a role below:
    
<  s:bean  id  ="roles"  name  ="tutorial.Roles"  /> 
    
<  s:form  action  ="Login"  > 
        
<  s:radio  list  ="#roles.roles"  value  ="'EMPLOYEE'"  name  ="role"  label  ="Role"  /> 
        
<  s:submit  /> 
    
</  s:form  > 
</  body  > 
</  html  >

创建Action类tutorial.Login将role放到session中,并转到Action类tutorial.AuthorizatedAccess,代码如下:

  package  tutorial;

  import  java.util.Map;

  import  org.apache.struts2.interceptor.SessionAware;

  import  com.opensymphony.xwork2.ActionSupport;

  public  class  Login  extends  ActionSupport  implements  SessionAware  {
    
 private String role;    
    
 private Map session;

    
 public String getRole() {
        
 return role;
    }
 

 
    
 public void setRole(String role) {
        
 this .role = role;
    }
 

    
    
 public void setSession(Map session) {
        
 this .session = session;
    }
 

 
    @Override
    
 public String execute() {
        session.put(
 " ROLE " , role);
        
 return SUCCESS;
    }
 
   
}

最后,配置struts.xml文件,内容如下:

<!  DOCTYPE struts PUBLIC
        "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
        "http://struts.apache.org/dtds/struts-2.0.dtd"
  > 
<  struts  > 
    
<  include  file  ="struts-default.xml"  />     
    
<  package  name  ="InterceptorDemo"  extends  ="struts-default"  > 
        
<  interceptors  > 
            
<  interceptor  name  ="auth"  class  ="tutorial.AuthorizationInterceptor"  /> 
        
</  interceptors  > 
        
<  action  name  ="Timer"  class  ="tutorial.TimerInterceptorAction"  > 
            
<  interceptor-ref  name  ="timer"  /> 
            
<  result  >  /Timer.jsp  </  result  > 
        
</  action  > 
        
<  action  name  ="Login"  class  ="tutorial.Login"  > 
            
<  result  type  ="chain"  >  AuthorizatedAccess  </  result  > 
        
</  action  > 
        
<  action  name  ="AuthorizatedAccess"  class  ="tutorial.AuthorizatedAccess"  > 
            
<  interceptor-ref  name  ="auth"  /> 
            
<  result  name  ="login"  >  /Login.jsp  </  result  > 
            
<  result  name  ="success"  >  /ShowRole.jsp  </  result  > 
        
</  action  > 
    
</  package  > 
</  struts  >

发布运行应用程序,在浏览器地址栏中输入:http://localhost:8080/Struts2_Interceptor/AuthorizatedAccess.action。由于此时,session还没有键为“ROLE”的值,所以返回Login.jsp页面,如图2所示:

图2 Login.jsp 
图2 Login.jsp

选中Employee,点击Submit,出现图3所示页面:

图3 ShowRole.jsp 
图3 ShowRole.jsp

总结

拦截器是Struts 2比较重要的一个功能。通过正确地使用拦截器,我们可以编写高可复用的代码。


=============================================================================================================================

总结:

1.过滤器:所谓过滤器顾名思义是用来过滤的,在java web中,你传入的request,response提前过滤掉一些信息,或者提前设置一些参数,然后再传入servlet或者struts的action进行业务逻辑,比如过滤掉非法url(不是login.do的地址请求,如果用户没有登陆都过滤掉),或者在传入servlet或者struts的action前统一设置字符集,或者去除掉一些非法字符(聊天室经常用到的,一些骂人的话)。filter 流程是线性的, url传来之后,检查之后,可保持原来的流程继续向下执行,被下一个filter, servlet接收等.

2.监听器:这个东西在c/s模式里面经常用到,他会对特定的事件产生产生一个处理。监听在很多模式下用到。比如说观察者模式,就是一个监听来的。又比如struts可以用监听来启动。Servlet监听器用于监听一些重要事件的发生,监听器对象可以在事情发生前、发生后可以做一些必要的处理。

3.java的拦截器 主要是用在插件上,扩展件上比如 hivernate spring struts2等 有点类似面向切片的技术,在用之前先要在配置文件即xml文件里声明一段的那个东西。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值