我想知道如何在我的servlet Web应用程序中处理HTTP错误代码。如何在web.xml
中捕获特定的错误代码?
答案 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可能会对您有所帮助。