Web.xml
<!-- 声明普遍型错误 -->
< error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/ errorpage. jsp</location>
</ error-page>
<!-- 根据异常声明错误页面 -->
< error-page>
<exception-type>java.lang.NullPointerException</exception-type>
<location>/null error. jsp</location>
</ error-page>
<!-- 根据http状态码声明错误页面 -->
< error-page>
< error-code>404</ error-code>
<location>/notfound error. jsp</location>
</ error-page>
<!-- 声明普遍型错误 -->
< error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/ errorpage. jsp</location>
</ error-page>
<!-- 根据异常声明错误页面 -->
< error-page>
<exception-type>java.lang.NullPointerException</exception-type>
<location>/null error. jsp</location>
</ error-page>
<!-- 根据http状态码声明错误页面 -->
< error-page>
< error-code>404</ error-code>
<location>/notfound error. jsp</location>
</ error-page>
本文介绍如何在Web.xml中配置不同类型的错误页面,包括通过异常类型和HTTP状态码来指定错误处理页面的方法。
1896

被折叠的 条评论
为什么被折叠?



