Tomcat 自定义错误页

2016-07-05 13:27:53 7565

Tomcat 的错误页面是由 org.apache.catalina.valves.ErrorReportValve 类输出来的。如果想自定义错误页面,不需要修改该类。Servlet 规范声明了相关的API,只需要在每个 web 应用的 web.xml 里定义。可按照错误类型、错误代码配置。例如:

<web-app xmlns="http://www.landui.com/xml/ns/javaee"

   xmlns:xsi="http://www.landui.com/2001/XMLSchema-instance"

   xsi:schemaLocation="http://www.landui.com/xml/ns/javaee http://www.landui.com/xml/ns/javaee/web-app_2_5.xsd"

   version="2.5">

<display-name>Welcome to Tomcat</display-name>

<description>

     Welcome to Tomcat

</description>

<error-page>

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

<location>/errorpages/404.jsp</location>

</error-page>  


<error-page>

  <exception-type>java.lang.Exception</exception-type>

  <location>/errorpages/exception.jsp</location>

 </error-page>


</web-app>

注意错误页面必须以“/”开头,这样任何path的404错误页面及exception错误都会映射到这两个文件。然后在本web引用的errorpages下面放置404.jsp, exception.jsp两个文件。

错误页面 404.jsp:

<%@ page contentType="text/html; charset=UTF-8" %>

<%@ page import="java.io.*" %>

<%@ page import="java.util.*" %>

<html>

<header>

<title>404 page</title>

<body>

<pre>

<%

    Enumeration<String> attributeNames = request.getAttributeNames();

    while (attributeNames.hasMoreElements())

    {

        String attributeName = attributeNames.nextElement();

        Object attribute = request.getAttribute(attributeName);

   out.println("request.attribute['" + attributeName + "'] = " + attribute); 

    }

%>

</pre>

代码中输出了所有的 request 中的变量。从中也可以看到访问哪个文件出错,跳到哪个错误页面了,从而进行更详细、更人性化的错误处理。例如,提示可能的正确网址等等。

例如:访问一个不存在的页面 page_not_exist.html,显示的信息为:

request.attribute['javax.servlet.forward.request_uri'] = /page_not_exists.html

request.attribute['javax.servlet.forward.context_path'] = 

request.attribute['javax.servlet.forward.servlet_path'] = /page_not_exists.html

request.attribute['javax.servlet.forward.path_info'] = /errorpages/404.jsp

request.attribute['javax.servlet.error.message'] = /page_not_exists.html

request.attribute['javax.servlet.error.status_code'] = 404

request.attribute['javax.servlet.error.servlet_name'] = default

request.attribute['javax.servlet.error.request_uri'] = /page_not_exists.html


提交成功!非常感谢您的反馈,我们会继续努力做到更好!

这条文档是否有帮助解决问题?

非常抱歉未能帮助到您。为了给您提供更好的服务,我们很需要您进一步的反馈信息:

在文档使用中是否遇到以下问题: