EN
Tomcat change session timeout
12 points
web.xml location:
xxxxxxxxxx
1
apache-tomcat-8.5.38/conf/web.xml
After we opened web.xml, we need to find <session-timeout> tag in xml and we can change it to other value.
xxxxxxxxxx
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
5
<session-config>
6
<session-timeout>30</session-timeout>
7
</session-config>
session-timeout value is defined in minutes
Explanation:
- to set to 1h set session-timeout value to 60
- to set to 24h set session-timeout value to 1440
Calculations:
- 60 min - 1h
- 1440 min - 24h (24*60) - 1 day
Examples:
- Set session timeout to 60 min (1h)
xxxxxxxxxx
1
<session-config>
2
<session-timeout>60</session-timeout>
3
</session-config>
- Set session timeout to 1440 min (24h)
1 hour = 60 min
60 min * 24 hours = 1440 min
xxxxxxxxxx
1
<session-config>
2
<session-timeout>1440</session-timeout>
3
</session-config>
- Set session timeout to 10080 min (7 days)
1 days = 1440 min
1440 min * 7 days = 10080 min
xxxxxxxxxx
1
<session-config>
2
<session-timeout>10080</session-timeout>
3
</session-config>
- Set session timeout to 43200 min (30 days)
1 days = 1440 min
1440 min * 30 days = 43200 min
xxxxxxxxxx
1
<session-config>
2
<session-timeout>43200</session-timeout>
3
</session-config>
With Intellij IDEA - restart tomcat from IDEA level.
If we run tomcat on windows:
- apache-tomcat-8.5.38\bin\shutdown.sh
- apache-tomcat-8.5.38\bin\startup.sh
If we run tomcat on windows:
- apache-tomcat-8.5.38\bin\shutdown.bat
- apache-tomcat-8.5.38\bin\startup.bat
We can set session timeout programmatically for each request.
The way to do it:
xxxxxxxxxx
1
import javax.servlet.http.HttpSession;
2
3
HttpSession session = request.getSession();
4
session.setMaxInactiveInterval(1440); // 24h