1. 程式人生 > >全域性錯誤處理頁面

全域性錯誤處理頁面

<web-app>中新增

        <error-page>

              <error-code>500</error-code>

              <location>/common/500.jsp</location>

        </error-page>

        <error-page>

              <error-code>404</error-code>

              <location>/common/404.html</location>

        </error-page>


</web-app>




jsp的錯誤頁面頁面的 @page 指令 新增  isErrorPage = "true"   可以用內建的  exception物件    <%=exception.getMessage()%>