web.xml: session-config timeout : web.xml « javax.servlet.http « Java by API






web.xml: session-config timeout

<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">

<web-app>
    <session-config>
        <session-timeout>
            60 <!-- minutes -->
        </session-timeout>
    </session-config>
</web-app>

           
       








Related examples in the same category

1.web.xml: filter-name and filter-mapping
2.web.xml: error page with error code
3.web.xml: error page with exception type
4.web.xml: context-param
5.web.xml: mime-mapping
6.web.xml: welcome-file-list
7.web.xml: security-constraint
8.web.config: login-config
9.web.xml: servlet-name, init-param, servlet-mapping