webxml
<error-page>
<error-code>405</error-code>
<location>/support/405.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/support/500.jsp</location>
</error-page>
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/support/500.jsp</location>
</error-page>
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/support/500.jsp</location>
</error-page>
Как добавить исключения и метки к нескольким страницам ошибок
<error-page>
<error-code>405</error-code>
<location>/support/405.jsp</location>
</error-page>
**
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/support/405.jsp</location>
</error-page>
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/support/405.jsp</location>
</error-page>
**
<error-page>
<error-code>500</error-code>
<location>/support/500.jsp</location>
</error-page>
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/support/500.jsp</location>
</error-page>
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/support/500.jsp</location>
</error-page>