码迷,mamicode.com
首页 > 编程语言 > 详细

java设置配置session过期时间的方法

时间:2014-10-27 22:41:37      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:des   http   io   ar   java   sp   on   cti   代码   

1) Timeout in the deployment descriptor (web.xml)
以分钟为单位

代码如下 复制代码
<web-app ...>
<session-config>
<session-timeout>20</session-timeout>
</session-config>
</web-app>

上面这种设置,对整个web应用生效。当客户端20分钟内都没有发起请求时,容器会将session干掉。

2) Timeout with setMaxInactiveInterval()
通过编码方式,指定特定的session的过期时间,以秒为单位。例如:

代码如下 复制代码
HttpSession session = request.getSession();
session.setMaxInactiveInterval(20*60);

The above setting is only apply on session which call the “setM(www.111cn.net)axInactiveInterval()” method, and session will be kill by container if client doesn’t make any request after 20 minutes.

Thoughts….
This is a bit confusing , the value in deployment descriptor (web.xml) is in “minute”, but the setMaxInactiveInterval() method is accept the value in “second”. Both functions should synchronize it in future release

3) 在程序中定义,单位为秒,设置为-1表示永不过期,示例代码为:

代码如下 复制代码
session.setMaxInactiveInterval(30*60);

Session设置产生效果的优先循序是,先程序后配置,先局部后整体
from:http://www.111cn.net/jsp/Java/59186.htm

java设置配置session过期时间的方法

标签:des   http   io   ar   java   sp   on   cti   代码   

原文地址:http://www.cnblogs.com/alibai/p/4055210.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!