什么是部署在Tomcat5.5中的Web应用程序的默认会话超时? 它是针对特定浏览器? 在我的web应用程序,默认的超时既没有提到web.xml
也没有代码。
Answer 1:
打开$CATALINA_BASE/conf/web.xml
并找到这
<!-- ==================== Default Session Configuration ================= -->
<!-- You can set the default session timeout (in minutes) for all newly -->
<!-- created sessions by modifying the value below. -->
<session-config>
<session-timeout>30</session-timeout>
</session-config>
所有的webapps隐含从这个默认的Web描述符继承。 您可以覆盖会话配置以及在web.xml中定义的其他设置。
这实际上是从我的Tomcat 7(Windows)中,但我认为5.5的conf差别不大
文章来源: Default session timeout for Apache Tomcat applications