web服务器中error-page配置

 在web.xml中有两种配置error-page的方法,一是通过错误码来配置,而是通过异常的类型来配置,分别举例如下
1、通过错误码来配置error-page

   <error-page> 

   <error-code>404</error-code> 

   <location>/WEB-INF/pages/404.jsp</location> 

</error-page>


   上面配置了当系统发生404错误(即服务器内部错误)时,跳转到错误处理页面error.jsp。

2.通过异常的类型配置error-page
<error-page>
        <exception-type>java.lang.NullException</exception-type>
        <location>/error.jsp</location>
   </error-page>
上面配置了当系统发生java.lang.NullException(即空指针异常)时,跳转到错误处理页面error.jsp

3.遇到无法跳转的解决

      确保location属性中填写的错误页面是绝对路径 



你可能感兴趣的:(web服务器中error-page配置)