在 UI 中处理运行时异常

Handling runtime exceptions in UI

假设我的网络应用程序由于某种原因抛出运行时异常。 当发生这种情况时,我想捕获它并在 UI 中显示正确的消息而不是 501/505 错误。 最好的方法是什么?

你的 web.xml

中有这样的内容
<error-page>
    <exception-type>java.lang.Throwable</exception-type>
    <location>/app/error/commonErrorPage</location>
</error-page>

<error-page>
    <error-code>404</error-code>
    <location>/app/error/404ErrorPage</location>
</error-page>