web/WEB-INF/web.xml

changeset 1
34241be7db73
child 6
da61a1646eba
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/web/WEB-INF/web.xml	Wed Mar 29 16:06:22 2017 +0200
     1.3 @@ -0,0 +1,17 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<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">
     1.6 +    <servlet>
     1.7 +        <servlet-name>HomeServlet</servlet-name>
     1.8 +        <servlet-class>de.uapcore.lightpit.HomeServlet</servlet-class>
     1.9 +    </servlet>
    1.10 +    <servlet-mapping>
    1.11 +        <servlet-name>HomeServlet</servlet-name>
    1.12 +        <url-pattern>/</url-pattern>
    1.13 +        <url-pattern>/home</url-pattern>
    1.14 +    </servlet-mapping>
    1.15 +    <session-config>
    1.16 +        <session-timeout>
    1.17 +            30
    1.18 +        </session-timeout>
    1.19 +    </session-config>
    1.20 +</web-app>

mercurial