-
监听域对象中的属性的增加和删除的事件监听器查看全部
-
ServletRequest查看全部
-
HttpSession查看全部
-
ServletContext查看全部
-
监听域对象自身的创建和销毁的事件监听器查看全部
-
按监听的事件划分查看全部
-
按监听的对象划分查看全部
-
监听器的启动顺序查看全部
-
1、实现ServletContextListener接口 contextInitialized() contextDestoryed() 2、web.xml中注册 <listener> <listener-class>类的完整路径</listener> </listener查看全部
-
创建Web监听器的步骤查看全部
-
Web监听器查看全部
-
监听器的定义查看全部
-
.按监听器的对象划分: 1、用户监听应用程序环境对象(ServletContext)的时间监听器 2、用于监听用户会话对象(HttpSession)的事件监听器 3、用于监听请求消息对象(ServletRequest)的事件监听器。 B.按事件划分: 1、监听三个域对象创建和销毁的事件监听器 ServletRequestListener有以下两个方法: void requestDestroyed(ServletRequestEvent sre) void requestInitialized(ServletRequestEvent sre) HttpSessionListener有以下两个方法: void sessionCreated(HttpSessionEvent se) void sessionDestroyed(HttpSessionEvent se) ServletContextListener有以下两个方法: void contextDestroyed(ServletContextEvent sce) void contextInitialized(ServletContextEvent sce) 2、监听域对象中属性的增加和删除的事件监听器 ServletContextAttributeListener HttpSessionAttributeListener ServletRequestAttributeListener 3、监听绑定到HttpSession域中的某个对象的状态的时间监听器 注意:这种监听器不需要注册。某个javabean实现这些接口后就可以监听何时被绑定、解绑或被激活或钝化(Servlet3.0下) HttpSessionBindingListener:实现该接口的类,能检测自己何时被Httpsession绑定和解绑 HttpSessionActivationListener:实现该接口的类(要求javabean必须是实现了Serializable接口的),能监测自己何时随着HttpSession一起激活和钝化查看全部
-
servlet3.0监听器的用法查看全部
-
监听绑定到HttpSession域中某个对象状态的事件监听器查看全部
举报
0/150
提交
取消