1 <?xml version="1.0" encoding="UTF-8"?> |
1 <?xml version="1.0" encoding="UTF-8"?> |
2 <web-app version="3.1" 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"> |
2 <web-app version="3.1" 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"> |
3 <servlet> |
|
4 <servlet-name>HomeServlet</servlet-name> |
|
5 <servlet-class>de.uapcore.lightpit.HomeServlet</servlet-class> |
|
6 </servlet> |
|
7 <servlet-mapping> |
|
8 <servlet-name>HomeServlet</servlet-name> |
|
9 <url-pattern>/</url-pattern> |
|
10 <url-pattern>/home</url-pattern> |
|
11 </servlet-mapping> |
|
12 <session-config> |
3 <session-config> |
13 <session-timeout> |
4 <session-timeout> |
14 30 |
5 30 |
15 </session-timeout> |
6 </session-timeout> |
16 </session-config> |
7 </session-config> |