Web listener

 

ListenerServlet的监听器,它可以监听客户端的请求、服务端的操作等。(通过监听器,可以自动激发一些操作,比如监听在线的用户的数量。当增加一个HttpSession时,就激发 sessionCreated(HttpSessionEvent se)方法,这样就可以给在线人数加1。)

Servlet
监听器用于监听一些重要事件的发生,监听器对象在事情发生前、发生后可以做一些必要的处理。

目前 Servlet2.4 JSP2.0 常用的有7 个监听器接口,分为3 类:

1. Servlet
上下文进行监听(Application级)
用于监听 ServletContext 对象的创建和删除以及属性的添加、删除和修改等操作,该监听器需要用到如下两个接口类:
(1) ServletContextAttributeListener
:监听对 ServletContext 属性的操作,比如增加、删除、修改
   attributeAdded(ServletContextAttributeEvene)            
添加属性时调用   
   attributeReplaced(ServletContextAttributeEvente)             
修改属性时调用   
   attributeRemoved(ServletContextAttributeEvente)              
删除属性时调用

(2) ServletContextListener
:监听对 ServletContext  对象的创建和删除
    contextInitialized(ServletContextEventsce)                  
初始化时调用   
     contextDestroyed(ServletContextEvent sce) 
销毁时调用,即当    

服务器重新加载时调用

2.
监听HTTP会话(Session级)
用于监听 HTTP 会话活动情况和 HTTP 会话中的属性设置情况,也可以监听 HTTP 会话的 active passivate 情况等,该监听器需要用到如下多个接口类:
(1) HttpSessionListener
:监听 HttpSession 的操作
    sessionCreate(HttpSessionEvent se) 
初始化时调用;
    sessionDestroyed(httpSessionEvent se) 
销毁时调用,即当用户注销时调用
  

Java代码

  1.    package com.wl.listener.test;   
  2.   
  3. import javax.servlet.http.HttpSessionEvent;   
  4. import javax.servlet.http.HttpSessionListener;   
  5.   
  6. public class HttpSessionListenerTest implements HttpSessionListener {   
  7.   
  8.     public void sessionCreated(HttpSessionEvent arg0) {   
  9.            
  10.             System.out.println("SSSSSSSSSSSSSSSSSS");   
  11.     }   
  12.   
  13.     public void sessionDestroyed(HttpSessionEvent arg0) {   
  14.                     
  15.             System.out.println("EEEEEEEEEEEEEEEEEEE");   
  16.     }   
  17.   
  18. }  

   package com.wl.listener.test;

 

import javax.servlet.http.HttpSessionEvent;

import javax.servlet.http.HttpSessionListener;

 

public class HttpSessionListenerTest implements HttpSessionListener {

 

  public void sessionCreated(HttpSessionEvent arg0) {

  

            System.out.println("SSSSSSSSSSSSSSSSSS");

  }

 

  public void sessionDestroyed(HttpSessionEvent arg0) {

       

            System.out.println("EEEEEEEEEEEEEEEEEEE");

  }

 

}

 


Web.xml的配置如下:

Java代码 

  1. <listener>   
  2.       <listener-class>com.wl.listener.test.HttpSessionListenerTest</listener-class>   
  3.   </listener>  

<listener>

      <listener-class>com.wl.listener.test.HttpSessionListenerTest</listener-class>

  </listener>



(2) HttpSessionActivationListener
:用于监听 HTTP 会话的 active passivate 情况

(3) HttpSessionAttributeListener
:监听 HttpSession 中的属性操作
  attributeAdded(HttpSessionBindingEvent se) 
添加属性时调用
   attributeRemoved(HttpSessionBindingEvent se)
删除属性时调用
   attributeReplaced(HttpSessionBindingEvent se)
修改属性时调用

3.
对客户端请求进行监听(Requst级)
用于对客户端的请求进行监听是在 Servlet2.4 规范中新添加的一项新技术,使用的接口如下:
(1) ServletRequestListener
接口类
     requestDestroyed(ServletRequestEvent e)   
对销毁客户端进行监听,即当执行 request.removeAttribute("xxx") 时调用
    requestInitialized(ServletRequestEvent e) 
对实现客户端的请求进行监听

Java代码

  1. package com.wl.listener.test;   
  2.   
  3. import javax.servlet.ServletRequestEvent;   
  4. import javax.servlet.ServletRequestListener;   
  5.   
  6. public class ServletRequestListenerTest implements ServletRequestListener {   
  7.   
  8.     public void requestDestroyed(ServletRequestEvent arg0) {   
  9.   
  10.         System.out.println("ServletRequestListenerTest is destroyed .......");   
  11.     }   
  12.   
  13.     public void requestInitialized(ServletRequestEvent arg0) {   
  14.   
  15.         System.out.println("ServletRequestListenerTest is start .......");   
  16.     }   
  17.   
  18. }  

package com.wl.listener.test;

 

import javax.servlet.ServletRequestEvent;

import javax.servlet.ServletRequestListener;

 

public class ServletRequestListenerTest implements ServletRequestListener {

 

  public void requestDestroyed(ServletRequestEvent arg0) {

 

   System.out.println("ServletRequestListenerTest is destroyed .......");

  }

 

  public void requestInitialized(ServletRequestEvent arg0) {

 

   System.out.println("ServletRequestListenerTest is start .......");

  }

 

}

 


Web.xml中添加如下配置:

Java代码 

  1.  <listener>   
  2.     <listener-class>com.wl.listener.test.ServletRequestListenerTest</listener-class>   
  3. </listener>  

   <listener>

      <listener-class>com.wl.listener.test.ServletRequestListenerTest</listener-class>

  </listener>



(2) ServletRequestAttributeListener
接口类
       attributeAdded(ServletRequestAttributeEvent e)        
对属性添加进行监听
       attributeRemoved(ServletRequestAttributeEvent e)   
对属性删除进行监听
       attributeReplaced(ServletRequestAttributeEvent e)   
对属性替换进行监听

你可能感兴趣的:(listener)