标签:
对application监听,实际上就是对ServletContext(Servlet上下文)监听,主要使用ServletContextListener
和ServletContextAttributeListener
两个接口。
上下文状态监听:ServletContextListener
ServletContextListener
接口的定义
在上下文状态监听操作中,一旦触发了ServletContextListener
接口的定义的事件后,可以通过ServletContextEvent
进行事件的处理。
关于不同的Servlet的配置
上下文属性监听:ServletContextAttributeListener
ServletContextAttributeListener
接口定义的方法
ServletContextAttributeEvent
事件定义的方法
1.session状态监听:HttpSessionListener
接口
HttpSessionListener
接口定义的方法
HttpSessionEvent
事件定义的方法
2.session属性监听:HttpSessionAttributeListener
接口
HttpSessionAttributeListener
接口定义的方法
HttpSessionBindingEvent
事件定义的方法
3.session属性监听:HttpSessionBindingListener
接口
HttpSessionBindingListener
接口实现的监听程序可以不用配置而直接使用。
HttpSessionBindingListener
接口定义的方法
1.请求状态监听:ServletRequestListener
接口
ServletRequestListener
接口定义的方法
ServletRequestEvent
事件定义的方法
2.request属性监听:ServletRequestAttributeListener
接口
ServletRequestAttributeListener
接口定义的方法
ServletRequestAttributeEvent
事件定义的方法
标签:
原文地址:http://blog.csdn.net/winfredzen/article/details/51210282