您的位置:首页 > 其它

servlet监听总结

2012-12-04 14:36 176 查看
监听器的作用:自动执行一些操作。

三种servlet监听器:

对request的监听。对session的监听。对application的监听。

怎么创建一个session监听器:

1,生成一个普通的class类,如果是对session的监听,则实现HttpSessionListener。

然后重写里面的五个方法:

public void sessionCreated(HttpSessionEvent arg0) {} // 创建

public void sessionDestroyed(HttpSessionEvent arg0) {} // 销毁

public void attributeAdded(HttpSessionEvent arg0) {} // 增加

public void attributeRemoved(HttpSessionEvent arg0) {} // 删除

public void attributeReplaced(HttpSessionEvent arg0) {} // 替换

2、Servlet上下文进行监听(Application级):

用于监听 ServletContext 对象的创建和删除以及属性的添加、删除和修改等操作,该监听器需要用到如下两个接口类:

(1) ServletContextAttributeListener:监听对 ServletContext 属性的操作,比如增加、删除、修改

attributeAdded(ServletContextAttributeEvent e) 添加属性时调用

attributeReplaced(ServletContextAttributeEvent e) 修改属性时调用

attributeRemoved(ServletContextAttributeEvent e) 删除属性时调用

(2) ServletContextListener:监听对 ServletContext 对象的创建和删除

contextInitialized(ServletContextEvent sce) 初始化时调用

contextDestroyed(ServletContextEvent sce) 销毁时调用,即当服务器重新加载时调用

3、 对客户端请求进行监听(Requst级):

用于对客户端的请求进行监听是在 Servlet2.4 规范中新添加的一项新技术,使用的接口如下:

(1) ServletRequestListener 接口类

requestDestroyed(ServletRequestEvent e) 对销毁客户端进行监听,即当执行 request.removeAttribute("xxx") 时调用

requestInitialized(ServletRequestEvent e) 对实现客户端的请求进行监听

(2) ServletRequestAttributeListener 接口类

attributeAdded(ServletRequestAttributeEvent e) 对属性添加进行监听

attributeRemoved(ServletRequestAttributeEvent e) 对属性删除进行监听

attributeReplaced(ServletRequestAttributeEvent e) 对属性替换进行监听
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: