src/main/webapp/WEB-INF/web.xml

Mon, 17 Jul 2023 14:45:42 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 17 Jul 2023 14:45:42 +0200
changeset 279
d73537b925af
parent 254
55ca6cafc3dd
permissions
-rw-r--r--

start implementation of HgConnector

     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
     3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     4          xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/web-app_6_0.xsd"
     5          version="6.0">
     6     <session-config>
     7         <session-timeout>
     8             30
     9         </session-timeout>
    10     </session-config>
    11     <context-param>
    12         <param-name>available-languages</param-name>
    13         <param-value>en,de</param-value>
    14     </context-param>
    15     <context-param>
    16         <param-name>hg-binary</param-name>
    17         <param-value>/usr/bin/hg</param-value>
    18     </context-param>
    19     <resource-ref>
    20         <description>Application Database</description>
    21         <res-ref-name>jdbc/lightpit/app</res-ref-name>
    22         <res-type>javax.sql.DataSource</res-type>
    23         <res-auth>Container</res-auth>
    24         <lookup-name>java:/jdbc/lightpit/app</lookup-name>
    25     </resource-ref>
    26     <error-page>
    27         <location>/error/generic</location>
    28     </error-page>
    29 </web-app>

mercurial