从servlet发生异常时如何重定向到错误页面?

Rag*_*ghu 5 java error-handling jsp servlets jstl

我正在写一个servlet,因为如果发生任何异常,我不想在浏览器上显示异常/错误消息,所以我将重定向到我的自定义错误页面.所以我这样做了:

protected void doPost(HttpServletRequest request,
        HttpServletResponse response) throws ServletException, IOException {
try{
    //Here is all code stuff
}catch(Exception e){

  request.getRequestDispatcher("/ErrorPage.jsp").forward(request, response);
  e1.printStackTrace();

}
Run Code Online (Sandbox Code Playgroud)

这是正确的方法,如果我错了请纠正我,如果有更好的机制请告诉我.

Rom*_*n C 7

以通用方式处理它的唯一方法是使用web.xml如下所示:

<error-page>
  <exception-type>java.lang.Throwable</exception-type>
  <location>/ErrorHandler</location>
</error-page>
Run Code Online (Sandbox Code Playgroud)

servlet 被抛出ServletExceptionIOException但如果您想在单个异常处理程序中处理运行时异常和所有其他异常,您可以将异常类型提供为Throwable. 您可以使用多个错误页面条目来处理不同类型的异常并具有不同的处理程序。

例子:

@WebServlet("/ErrorHandler")
public class ErrorHandler extends HttpServlet {
    private static final long serialVersionUID = 1L;

    protected void doGet(HttpServletRequest request,
            HttpServletResponse response) throws ServletException, IOException {
        processError(request, response);
    }

    protected void doPost(HttpServletRequest request,
            HttpServletResponse response) throws ServletException, IOException {
        processError(request, response);
    }
    private void processError(HttpServletRequest request,
            HttpServletResponse response) throws IOException {
        //customize error message
        Throwable throwable = (Throwable) request
                .getAttribute("javax.servlet.error.exception");
        Integer statusCode = (Integer) request
                .getAttribute("javax.servlet.error.status_code");
        String servletName = (String) request
                .getAttribute("javax.servlet.error.servlet_name");
        if (servletName == null) {
            servletName = "Unknown";
        }
        String requestUri = (String) request
                .getAttribute("javax.servlet.error.request_uri");
        if (requestUri == null) {
            requestUri = "Unknown";
        }    
        request.setAttribute("error", "Servlet " + servletName + 
          " has thrown an exception " + throwable.getClass().getName() +
          " : " + throwable.getMessage());    
        request.getRequestDispatcher("/ErrorPage.jsp").forward(request, response);
    }
}
Run Code Online (Sandbox Code Playgroud)