我只是想知道在web.xml文件的<exception-type>
标记内是否真的需要使用<error-page>
标记。
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error.jsp</location>
</error-page>
而不是简单地使用下面的<error-code>
标记。
<error-page>
<error-code>404</error-code>
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error.jsp</location>
</error-page>
答案 0 :(得分:0)
不需要。如果您没有异常类型错误页面,则所有例外将由
服务<error-code> 500 </error-code>
但是如果您有自己的AbstractException,例如MyApplicationException,并且您想以不同的方式记录它,则可以使用<exception-type>
。