xml常用的error-page

Posted 艺意

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml常用的error-page相关的知识,希望对你有一定的参考价值。

  <error-page>
            <error-code>404</error-code>
            <location>/WEB-INF/jsp/errors/error.jsp</location>
        </error-page>
        <error-page>
            <error-code>500</error-code>
            <location>/WEB-INF/jsp/errors/error.jsp</location>
        </error-page>
        <error-page>
            <error-code>414</error-code>
            <location>/WEB-INF/jsp/errors/error.jsp</location>
        </error-page>
        <error-page>
            <error-code>505</error-code>
            <location>/WEB-INF/jsp/errors/error.jsp</location>
        </error-page>
        <error-page>
            <error-code>400</error-code>
            <location>/WEB-INF/jsp/errors/error.jsp</location>
        </error-page>
      <error-page>
        <exception-type>java.lang.NullPointerException</exception-type>
        <location>/WEB-INF/jsp/errors/error.jsp</location>
    </error-page>

 

以上是关于xml常用的error-page的主要内容,如果未能解决你的问题,请参考以下文章

javaweb 中 error-page

如何在 servlet 3.0 的 web.xml-less 中定义 <welcome-file-list> 和 <error-page>?

如何在 web.xml 中指定默认错误页面?

在web.xml中添加条件

在 Tomcat 中自定义 404 页面(简单配置)

jsp一些使用技巧