27
我必須測試由spring和jsp編寫的web應用程序。應用程序的默認會話超時時間爲30分鐘。更改彈簧web應用程序的默認會話超時
我想減少會話超時。爲此,我在tomcatInstallationLocation/conf/
的web.xml
文件中進行了更改。但它不起作用。在tomcatInstallationLocation/conf/web.xml
默認配置是 -
<session-config>
<session-timeout>30</session-timeout>
</session-config>
在哪裏,我只是改變了時間,並使其 -
<session-config>
<session-timeout>5</session-timeout>
</session-config>
,但仍無法正常工作。據我所知,在這種情況下,我必須改變我的彈簧應用程序的web.xml
。但我不確定。誰能幫我?
在此先感謝。