我有一個web應用war
是建立與spring-boot-starter-web
和運行在tomcat8
。web.xml會話超時沒有考慮到春季啓動web應用程序?
只有一個應用程序,我想增加會話超時。因此增加了以下文件:
/src/main/resources/WEB-INF/web.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<session-config>
<session-timeout>600</session-timeout>
</session-config>
</web-app>
但TTL會話超時仍然是默認的30分鐘。爲什麼?
你需要一個限制嗎?爲什麼不把它徹底關掉?將其設置爲0。 –
這只是一個例子。但我需要一個確定的限制。 – membersound