java中设置session过期时间
session的取值范围是1-1440(就是24小时 )1. 在web容器中设置(以tomcat为例,Tomcat默认session超时时间为30分钟)在D:\Program Files\apache-tomcat-8.0.26\conf\web.xml中设置,以下是tomcat 8.0中的默认配置:302. 在项目工程的web.xml中设置
·
session的取值范围是1-1440(就是24小时 )
1. 在web容器中设置(以tomcat为例,Tomcat默认session超时时间为30分钟)
在D:\Program Files\apache-tomcat-8.0.26\conf\web.xml中设置,以下是tomcat 8.0中的默认配置:
<session-config>
<!-- 时间单位为分钟 -->
<session-timeout>30</session-timeout>
</session-config>
2. 在项目工程的web.xml中设置
<session-config>
<!-- 时间单位为分钟 -->
<session-timeout>15</session-timeout>
</session-config>
3. 通过Java代码设置
//以秒为单位
session.setMaxInactiveInterval(30*60);
三种方式优先级:1 < 2 <3
更多推荐
已为社区贡献1条内容
所有评论(0)