无法自定义tomcat7 404错误页面

时间:2017-05-18 15:49:17

标签: linux tomcat7

我正在尝试自定义tomcat7错误页面。我需要所有上下文路径的全局设置,所以我最终得到了全局 /etc/tomcat/web.xml 文件中的配置:

<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
                  http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<error-page>
       <error-code>404</error-code>
       <location>/custom-pages/error.jsp</location>
</error-page>

Tomcat在我提问时成功返回页面:

curl -s 127.0.0.1:8080/custom-pages/error.jsp

<html><body>Sorry, the page you requested were not found.</html></body>

然而,当我请求一些不存在的页面时,我得到一个tomcat的默认错误页面,但不是我的那个:

curl 127.0.0.1:8080/not-exist
<html><head><title>Error report</title></head>
<body><h1>HTTP Status 404 - /not-exist</h1></body>
</html>

这是tomcat web目录的布局:

tree /usr/share/tomcat7/webapps/
/usr/share/tomcat7/webapps/
└── ROOT
    └── custom-pages
        └── error.jsp

自定义错误页面的内容:

cat /usr/share/tomcat7/webapps/ROOT/custom-pages/error.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<html><body>Sorry, the page you requested were not found.</body></html>

有什么想法吗?提前谢谢。

1 个答案:

答案 0 :(得分:0)

嗯,同时我找到了答案。我必须在 /etc/tomcat7/context.xml 中评论 org.apache.catalina.valves.ErrorReportValve 指令,它就可以了。看起来这个指令“覆盖”任何自定义错误页面!希望对其他人有用......:

<!-- 
 <Valve className="org.apache.catalina.valves.ErrorReportValve"
 showReport="false" showServerInfo="false" /> 
-->