15 lines
612 B
XML
15 lines
612 B
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" id="WebApp_ID" version="4.0">
|
||
|
|
<display-name>SMMS</display-name>
|
||
|
|
<welcome-file-list>
|
||
|
|
<welcome-file>index.jsp</welcome-file>
|
||
|
|
</welcome-file-list>
|
||
|
|
<error-page>
|
||
|
|
<error-code>404</error-code>
|
||
|
|
<location>/404.jsp</location>
|
||
|
|
</error-page>
|
||
|
|
<error-page>
|
||
|
|
<error-code>500</error-code>
|
||
|
|
<location>/500.jsp</location>
|
||
|
|
</error-page>
|
||
|
|
</web-app>
|