java设置session过期时间的实现方法
程序员文章站
2024-02-29 16:13:58
本文实例讲述了java设置session过期时间的实现方法,分享给大家供大家参考。具体实现方法如下:
1、timeout in the deployment descri...
本文实例讲述了java设置session过期时间的实现方法,分享给大家供大家参考。具体实现方法如下:
1、timeout in the deployment descriptor (web.xml)
以分钟为单位
复制代码 代码如下:
<web-app ...>
<session-config>
<session-timeout>20</session-timeout>
</session-config>
</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);
session.setmaxinactiveinterval(20*60);
the above setting is only apply on session which call the “setmaxinactiveinterval()” 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设置产生效果的优先循序是,先程序后配置,先局部后整体。
希望本文所述对大家的java程序设计有所帮助。
推荐阅读
-
java设置session过期时间的实现方法
-
Java按时间梯度实现异步回调接口的方法
-
Java设置Access-Control-Allow-Origin允许多域名访问的实现方法
-
Java按时间梯度实现异步回调接口的方法
-
通过配置文件来修改WAS控制台Session过期时间的方法 博客分类: Java XML浏览器
-
elcomsoft wireless security au PHP中的session永不过期的解决思路及实现方法分享
-
php中设置session过期时间方法_PHP教程
-
请问获取cookie和session过期时间的方法是什么
-
php session永不过期的设置方法
-
php中实现精确设置session过期时间的方法_PHP