您的位置:首页 > 理论基础 > 计算机网络

HttpSessionBindingListener和HttpSessionAttributeListener区别 - gengkunpeng的专栏 - 博客频道 - CSDN.NET

2014-07-30 14:51 711 查看
分享到

一键分享

QQ空间

新浪微博

百度云收藏

人人网

腾讯微博

百度相册

开心网

腾讯朋友

百度贴吧

豆瓣网

搜狐微博

百度新首页

QQ好友

和讯微博

更多...

百度分享

HttpSessionBindingListener和HttpSessionAttributeListener区别

2010-12-04 22:04 637人阅读 评论(0) 收藏 举报
sessionobjectuserclass

 HttpSessionBindingListener和HttpSessionAttributeListener是两个经常让初学者弄混的监听器,其实它们有很大的区别。这2个监听器在文章中简称为BindingListener和AttributeListener.

1.BindingListener有2个方法,valueBound(HttpSessinBindingEvent)和valueUnbount(HttpSessionBindingEvent)。实现BindingListener接口的对象被绑 定到session时触发valueBound事件,解除绑定时触发valueUnbound事件。举例来说:

[c-sharp] view plaincopyprint?

public class UserObject implements HttpSessionBindingListener{

public void valueBound(HttpSessionBindingEvent event){

System.out.println("触发绑定事件!");

}

public void valueUnbound(HttpSessionBindingEvent event){

System.out.println("解除和session的绑定");

}

[java] view plaincopyprint?

MyListener implements HttpSessionAttributeListener{

attributeAdded(HttpSessionBindingEvenet event){

System.out.println("有对象加入session中");

}

attributeRemoved(HttpSessionBindingEvent event){

System.out.println("有对象从session中移除");

}

attributeReplaced(HttpSessionBindingEvent event){

System.out.println("属性值改变");

}

}

MyListener implements HttpSessionAttributeListener{
attributeAdded(HttpSessionBindingEvenet event){
System.out.println("有对象加入session中");
}
attributeRemoved(HttpSessionBindingEvent event){
System.out.println("有对象从session中移除");
}
attributeReplaced(HttpSessionBindingEvent event){
System.out.println("属性值改变");
}
}


OtherObject other = new OtherObject();

当有对象添加到session中时,session.setAttribute("object",other)触发attributeAdded事件,

当该对象从session移除时,session.removeAttribute("object")触发attriubteRemoved事件,

当该属性的值发生变化时, session.replaceAttribute("object",another)触发attributeRepalced事件。

注意:只要有对象保存到session中或从session中移除或改变属性的值都会触发相应事件,不论该对象是否实现了AttributeListener。

总结:1.只有实现了HttpSessionBindingListener的类,在和session绑定、解除绑定时触发其事件。

2.实现了HttpSessionAttributeListener后,任何对象(不论其是否实现了AttributeListener)在变化时均触发对应的事件。

更多 0
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐