web.xml 505 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  4. xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
  5. version="4.0">
  6. <display-name>oqpo-view</display-name>
  7. <welcome-file-list>
  8. <welcome-file>login.html</welcome-file>
  9. </welcome-file-list>
  10. <error-page>
  11. <error-code>404</error-code>
  12. <location>/fail/404.html</location>
  13. </error-page>
  14. </web-app>