30

我必须测试一个由 spring 和 jsp 编写的 Web 应用程序。应用程序的默认会话超时为 30 分钟。

我想减少会话超时。为此,我web.xmltomcatInstallationLocation/conf/. 但它不起作用。中的默认配置tomcatInstallationLocation/conf/web.xml是 -

<session-config>
    <session-timeout>30</session-timeout>
</session-config>

我刚刚改变了时间并成功了-

<session-config>
    <session-timeout>5</session-timeout>
</session-config>

但是仍然不起作用。据我所知,在这种情况下,我必须更改我的 spring 应用程序的web.xml. 但我不确定。谁能帮我?

提前致谢。

4

1 回答 1

58

会话超时层次结构:

  • $tomcat_home/conf/web.xml
  • $your_webapp/WEB-INF/web.xml
  • 手动调用HttpSession.setMaxInactiveInterval(int)

每个后续条目都会覆盖上面的其他条目。

于 2012-10-17T11:33:57.013 回答