我想在我的Tomcat服务器上的单个异常处理程序中处理运行时异常和所有其他异常。
如果我在我的web.xml文件中写道:
<error-page>
<error-code>404</error-code>
<location>/Exceptionhandler</location>
</error-page>
它完美无缺,但是如果我写的话
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/Exceptionhandler</location>
</error-page>
它不会使用我自己的Exceptionhandler。相反,它会从Tomcat中抛出通常的错误页面。
任何想法可能出错?