当前位置: 技术问答>java相关
jsp的session
来源: 互联网 发布时间:2015-04-04
本文导语: 我在一个JSP页面中用session保存了一些信息,我想当用户离开该页面的时候使该session无效。我该怎么做? | 什么叫离开页面,关闭IE?这样session肯定就没了。 你是说切换到其他页面?那么应该...
我在一个JSP页面中用session保存了一些信息,我想当用户离开该页面的时候使该session无效。我该怎么做?
|
什么叫离开页面,关闭IE?这样session肯定就没了。
你是说切换到其他页面?那么应该给个logout按钮之类的,你可以清掉session,不然认为用户还是在这次对话中是理所当然的~
你是说切换到其他页面?那么应该给个logout按钮之类的,你可以清掉session,不然认为用户还是在这次对话中是理所当然的~
|
HttpSessionBindingListener.valueUnbound(HttpSessionBindingEvent event)
可以吗?
可以吗?
|
removeAttribute
public void removeAttribute(java.lang.String name)
Removes the object bound with the specified name from this session. If the session does not have an object bound with the specified name, this method does nothing.
After this method executes, and if the object implements HttpSessionBindingListener, the container calls HttpSessionBindingListener.valueUnbound.
Parameters:
name - the name of the object to remove from this session
public void removeAttribute(java.lang.String name)
Removes the object bound with the specified name from this session. If the session does not have an object bound with the specified name, this method does nothing.
After this method executes, and if the object implements HttpSessionBindingListener, the container calls HttpSessionBindingListener.valueUnbound.
Parameters:
name - the name of the object to remove from this session
|
session不是有类似invalidate()之类的函数么,设一下就行了~