- Servlet 教程
- Servlet - 主页
- Servlet - 概述
- Servlet - 环境设置
- Servlet - 生命周期
- Servlet - 示例
- Servlet - 表单数据
- Servlet - 客户端请求
- Servlet - 服务器响应
- Servlet - Http 代码
- Servlet - 编写过滤器
- Servlet - 例外
- Servlet - Cookie 处理
- Servlet - 会话跟踪
- Servlet - 数据库访问
- Servlet - 文件上传
- Servlet - 处理日期
- Servlet - 页面重定向
- Servlet - 点击计数器
- Servlet - 自动刷新
- Servlet - 发送电子邮件
- Servlet - 包装
- Servlet - 调试
- Servlet - 国际化
- Servlet - 注释
- Servlet 有用资源
- Servlet - 问题与解答
- Servlet - 快速指南
- Servlet - 有用的资源
- Servlet - 讨论
Servlet - 异常处理
当 servlet 引发异常时,Web 容器会在web.xml中搜索使用 exception-type 元素的配置,以与引发的异常类型进行匹配。
您必须使用web.xml 中的error-page元素来指定 Servlet 的调用,以响应某些异常或 HTTP状态代码。
web.xml配置
考虑一下,您有一个ErrorHandler servlet,只要存在任何已定义的异常或错误,就会调用它。以下是在 web.xml 中创建的条目。
<!-- servlet definition --> <servlet> <servlet-name>ErrorHandler</servlet-name> <servlet-class>ErrorHandler</servlet-class> </servlet> <!-- servlet mappings --> <servlet-mapping> <servlet-name>ErrorHandler</servlet-name> <url-pattern>/ErrorHandler</url-pattern> </servlet-mapping> <!-- error-code related error pages --> <error-page> <error-code>404</error-code> <location>/ErrorHandler</location> </error-page> <error-page> <error-code>403</error-code> <location>/ErrorHandler</location> </error-page> <!-- exception-type related error pages --> <error-page> <exception-type> javax.servlet.ServletException </exception-type > <location>/ErrorHandler</location> </error-page> <error-page> <exception-type>java.io.IOException</exception-type > <location>/ErrorHandler</location> </error-page>
如果您想为所有异常使用通用错误处理程序,那么您应该定义以下错误页面,而不是为每个异常定义单独的错误页面元素 -
<error-page> <exception-type>java.lang.Throwable</exception-type > <location>/ErrorHandler</location> </error-page>
以下是上述 web.xml 异常处理需要注意的几点 -
servlet ErrorHandler 与任何其他 servlet 一样以通常的方式定义并在 web.xml 中配置。
如果存在状态代码为 404(未找到)或 403(禁止)的任何错误,则将调用 ErrorHandler servlet。
如果 Web 应用程序抛出 ServletException 或 IOException,则 Web 容器将调用 /ErrorHandler servlet。
您可以定义不同的错误处理程序来处理不同类型的错误或异常。上面的例子非常通用,希望它能够帮助您解释基本概念。
请求属性 - 错误/异常
以下是错误处理 Servlet 可以访问以分析错误/异常性质的请求属性列表。
先生。 | 属性及描述 |
---|---|
1 | javax.servlet.error.status_code 该属性给出状态代码,可以在存储为 java.lang.Integer 数据类型后进行存储和分析。 |
2 | javax.servlet.error.exception_type 该属性提供有关异常类型的信息,这些信息可以在存储在 java.lang.Class 数据类型中后进行存储和分析。 |
3 | javax.servlet.error.message 该属性提供了准确的错误消息信息,可以在存储为 java.lang.String 数据类型后进行存储和分析。 |
4 | javax.servlet.error.request_uri 该属性给出了有关调用 servlet 的 URL 的信息,并且可以在存储为 java.lang.String 数据类型后进行存储和分析。 |
5 | javax.servlet.error.Exception 此属性提供有关引发的异常的信息,可以存储和分析这些信息。 |
6 | javax.servlet.error.servlet_name 该属性给出了 servlet 名称,该名称可以在存储为 java.lang.String 数据类型后进行存储和分析。 |
错误处理程序 Servlet 示例
这个示例将使您对 Servlet 中的异常处理有基本的了解,但是您可以使用相同的概念编写更复杂的过滤器应用程序 -
// Import required java libraries import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.util.*; // Extend HttpServlet class public class ErrorHandler extends HttpServlet { // Method to handle GET method request. public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // Analyze the servlet exception 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"; } // Set response content type response.setContentType("text/html"); PrintWriter out = response.getWriter(); String title = "Error/Exception Information"; String docType = "<!doctype html public \"-//w3c//dtd html 4.0 " + "transitional//en\">\n"; out.println(docType + "<html>\n" + "<head><title>" + title + "</title></head>\n" + "<body bgcolor = \"#f0f0f0\">\n"); if (throwable == null && statusCode == null) { out.println("<h2>Error information is missing</h2>"); out.println("Please return to the <a href=\"" + response.encodeURL("http://localhost:8080/") + "\">Home Page</a>."); } else if (statusCode != null) { out.println("The status code : " + statusCode); } else { out.println("<h2>Error information</h2>"); out.println("Servlet Name : " + servletName + "</br></br>"); out.println("Exception Type : " + throwable.getClass( ).getName( ) + "</br></br>"); out.println("The request URI: " + requestUri + "<br><br>"); out.println("The exception message: " + throwable.getMessage( )); } out.println("</body>"); out.println("</html>"); } // Method to handle POST method request. public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { doGet(request, response); } }
以通常的方式编译ErrorHandler.java并将您的类文件放入
让我们在 web.xml 中添加以下配置来处理异常 -
<servlet> <servlet-name>ErrorHandler</servlet-name> <servlet-class>ErrorHandler</servlet-class> </servlet> <!-- servlet mappings --> <servlet-mapping> <servlet-name>ErrorHandler</servlet-name> <url-pattern>/ErrorHandler</url-pattern> </servlet-mapping> <error-page> <error-code>404</error-code> <location>/ErrorHandler</location> </error-page> <error-page> <exception-type>java.lang.Throwable</exception-type > <location>/ErrorHandler</location> </error-page>
现在尝试使用引发任何异常或键入错误 URL 的 servlet,这将触发 Web 容器调用ErrorHandler servlet 并按编程显示适当的消息。例如,如果您输入错误的 URL,则会显示以下结果 -
The status code : 404
上述代码可能不适用于某些网络浏览器。因此,尝试使用 Mozilla 和 Safari,它应该可以工作。