jsp 配置web.xml 错误页面

来源:互联网 发布:仓管软件有哪些 编辑:程序博客网 时间:2024/04/27 22:24
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <web-app version="2.5"   
  3.     xmlns="http://java.sun.com/xml/ns/javaee"   
  4.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
  5.     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee   
  6.     http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">  
  7.   
  8. <error-page>  
  9.     <error-code>404</error-code>  
  10.     <location>/error/404error.jsp</location>  
  11. </error-page>  
  12.   
  13. <error-page>  
  14.     <error-code>500</error-code>  
  15.     <location>/error/500error.jsp</location>  
  16. </error-page>  
  17. <error-page>  
  18.     <exception-type>java.lang.RuntimeException</exception-type>  
  19.     <location>/error/runtimeerror.jsp</location>  
  20. </error-page>  
  21.   
  22.   
  23. </web-app>
0 0
原创粉丝点击