Java设置session超时(失效)的三种方式

1.      在web容器中设置(此处以tomcat为例)

 

在tomcat-5.0.28\conf\web.xml中设置,以下是tomcat 5.0中的默认配置:

[html] view plaincopy
 
  1. <!-- ==================== Default Session Configuration ================= -->  
  2.   <!-- You can set the default session timeout (in minutes) for all newly   -->  
  3.   <!-- created sessions by modifying the value below.    -->  
  4.     <session-config>  
  5.         <session-timeout>30</session-timeout>  
  6. </session-config>  

Tomcat默认session超时时间为30分钟,可以根据需要修改,负数或0为不限制session失效时间。

 

 

2.      在工程的web.xml中设置

 

[html] view plaincopy
 
  1. <!-- 时间单位为分钟   -->  

 

 

<session-config>

      <session-timeout>15</session-timeout>

</session-config>

 

 

3.      通过java代码设置

session.setMaxInactiveInterval(30*60);//以秒为单位


三种方式优先级:1 < 2 <3



本文转自 netcorner 博客园博客,原文链接:http://www.cnblogs.com/netcorner/p/4357620.html   ,如需转载请自行联系原作者

上一篇:HTML设置表单的enctype编码方式


下一篇:WCF技术剖析之二十六:如何导出WCF服务的元数据(Metadata)[扩展篇]