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

Wed, 28 Dec 2022 13:21:30 +0100

author
Mike Becker <universe@uap-core.de>
date
Wed, 28 Dec 2022 13:21:30 +0100
changeset 254
55ca6cafc3dd
parent 72
0646c14e36fb
child 279
d73537b925af
permissions
-rw-r--r--

#233 migrate to Jakarta EE and update dependencies

     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     <resource-ref>
    16         <description>Application Database</description>
    17         <res-ref-name>jdbc/lightpit/app</res-ref-name>
    18         <res-type>javax.sql.DataSource</res-type>
    19         <res-auth>Container</res-auth>
    20         <lookup-name>java:/jdbc/lightpit/app</lookup-name>
    21     </resource-ref>
    22     <error-page>
    23         <location>/error/generic</location>
    24     </error-page>
    25 </web-app>

mercurial