HttpServletRequest对象的属性操作监听器

简介: HttpServletRequest对象的属性操作监听器三种常见方法

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

相关文章
|
存储 缓存 JavaScript
Listener概述、监听对象的创建和销毁、监听域对象属性变化、监听会话相关的感知型监听器及监听器实现
Listener概述、监听对象的创建和销毁、监听域对象属性变化、监听会话相关的感知型监听器及监听器实现
99 0
servlet中请求对象与响应对象的生命周期
servlet中请求对象与响应对象的生命周期
110 0
servlet中请求对象与响应对象的生命周期
HttpSession对象的属性操作监听器
HttpSession对象的属性操作监听器的个人理解
ServletContext对象的属性操作监听器
ServletContext对象的属性操作监听器的个人理解
HttpServletRequest对象的生命周期监听器
HttpServletRequest对象的生命周期监听器的个人理解
HttpSession对象的生命周期监听器
HttpSession对象的生命周期监听器的个人理解
ServletContext对象的生命周期监听器
ServletContext对象的生命周期监听器的理解