ServletContext对象的属性操作监听器

简介: ServletContext对象的属性操作监听器的个人理解

ServletContextAttributeListener接口定义了对于ServletContext对象属性操作的监听行为。
void attributeAdded(ServletContextAttributeEvent scae)
向ServletContext对象中添加属性时会触发该监听方法,并将ServletContext对象传递到该方法中。触发事件的方法servletContext.setAttribute("key","value")。
void attributeRemoved(ServletContextAttributeEvent scae)
当从ServletContext对象中删除属性时会触发该监听方法,并将ServletContext对象传递到该方法中。触发事件方法servletContext.removeAttribute("key")。
void attributeReplaced(ServletContextAttributeEvent scae)
当从ServletContext对象中属性的值发生替换时会触发该监听方法,并将ServletContext对象传递到该方法中。触发事件的方法servletContext.setAttribute("key","value")。

相关文章
|
8月前
|
JavaScript 前端开发
如何删除对象中的属性?如何想对象中添加属性?
如何删除对象中的属性?如何想对象中添加属性?
76 0
|
8月前
|
存储 C#
C#对象和类
C#对象和类
51 0
|
8月前
javaWeb监听器Listener -自定义监听器类实现
javaWeb监听器Listener -自定义监听器类实现
60usebean创建实例对象
60usebean创建实例对象
90 0
60usebean创建实例对象
HttpSession对象的属性操作监听器
HttpSession对象的属性操作监听器的个人理解
HttpServletRequest对象的属性操作监听器
HttpServletRequest对象的属性操作监听器三种常见方法
ServletContext对象的生命周期监听器
ServletContext对象的生命周期监听器的理解
HttpSession对象的生命周期监听器
HttpSession对象的生命周期监听器的个人理解
HttpServletRequest对象的生命周期监听器
HttpServletRequest对象的生命周期监听器的个人理解

热门文章

最新文章