1
我想知道如何處理我的servlet Web應用程序中的HTTP錯誤代碼。如何捕獲web.xml
中的特定錯誤代碼?處理servlet Web應用程序中的HTTP錯誤代碼
我想知道如何處理我的servlet Web應用程序中的HTTP錯誤代碼。如何捕獲web.xml
中的特定錯誤代碼?處理servlet Web應用程序中的HTTP錯誤代碼
在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可以幫助你。
是否有任何事情必須做的服務器端代碼? –
你不需要在服務器端代碼中做任何事情。 – Braj
謝謝Braj。 –