在servlet Web应用程序中处理HTTP错误代码

时间:2014-06-27 18:08:07

标签: servlets web.xml http-status-codes custom-error-pages

我想知道如何在我的servlet Web应用程序中处理HTTP错误代码。如何在web.xml中捕获特定的错误代码?

1 个答案:

答案 0 :(得分:1)

在web.xml中为每个错误代码或异常配置一个error-page

示例代码

<error-page>
    <error-code>403</error-code>
    <location>/errorPage.html</location>
</error-page>

<error-page>
    <exception-type>javax.servlet.ServletException</exception-type>
    <location>/errorServlet</location>
</error-page>

以下Tutorial可能会对您有所帮助。