19 lines
552 B
XML
19 lines
552 B
XML
<web-app 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"
|
|
version="3.1">
|
|
|
|
<display-name>jpacrepo</display-name>
|
|
<description>jpacrepo</description>
|
|
|
|
<session-config>
|
|
<tracking-mode>COOKIE</tracking-mode>
|
|
</session-config>
|
|
|
|
<error-page>
|
|
<error-code>404</error-code>
|
|
<location>404.xhtml</location>
|
|
</error-page>
|
|
|
|
</web-app>
|