美文网首页
在web.xml中配置error-page

在web.xml中配置error-page

作者: 年少懵懂丶流年梦 | 来源:发表于2017-03-05 22:48 被阅读146次

    在web.xml中配置error-page

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

    一. 通过错误码来配置error-page

    <error-page>
            <error-code>500</error-code>
            <location>/error.jsp</location>
      </error-page>
    

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

    二. 通过异常的类型配置error-page

    <error-page>
            <exception-type>java.lang.NullException</exception-type>
            <location>/error.jsp</location>
       </error-page>
    

    上面配置了当系统发生java.lang.NullException(即空指针异常)时,跳转到错误处理页面error.jsp

    相关文章

      网友评论

          本文标题:在web.xml中配置error-page

          本文链接:https://www.haomeiwen.com/subject/gztygttx.html