我正在使用tomcat而且我想,每当我去一个没有被servlet处理的方向时,做其他东西都会显示默认错误:
type Status report
message /test
description The requested resource is not available.
我在哪里可以处理?
提前谢谢
答案 0 :(得分:8)
在web.xml中定义错误页面:
<error-page>
<error-code>404</error-code>
<location>/path/to/your/page.html</location>
</error-page>
<强>更新强>
您可以通过其http状态(404,500,...)或定义完全限定的异常名称(java.lang.Exception,java.io.FileNotFoundException ...)来定义错误页面。如果您使用的是Servlet 3.x,您甚至可以省略error-code / error-classname部分来定义默认错误页面。
答案 1 :(得分:0)
这是一个最小的web.xml
,您可以将其放在一个webapps文件夹中(如果您不想全局更改404页面)。这将允许您例如将所有请求重定向到新文件夹。
<?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"
metadata-complete="true">
<error-page>
<error-code>404</error-code>
<location>/redirect.jsp</location>
</error-page>
</web-app>
请注意,web.xml
必须放在.../webapps/YourFolder/WEB-INF/web.xml
。
在redirect.jsp
中。你会提出类似的东西:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title>Moved</title>
</head>
<%
// get the requested URI
String requestedLocation = request.getRequestURI();
// rewrite to new location
String newLocation = requestedLocation.replaceAll("^/Old", "/New");
// 301 - permanent redirect
response.setStatus(response.SC_MOVED_PERMANENTLY);
response.setHeader("Location", newLocation);
%>
<body>
→ <a href="<%=newLocation%>"><%=newLocation%></a>
</body>
</html>
答案 2 :(得分:0)
自 Tomcat 9 起有不同的错误处理配置。
你必须:
<Valve className="org.apache.catalina.valves.ErrorReportValve" errorCode.404="webapps/ROOT/error_page.html" errorCode.0="webapps/ROOT/error_page.html" showReport="false" showServerInfo="false" />
请参考:https://stackoverflow.com/a/55702749/2532710 或 Tomcat 文档:https://tomcat.apache.org/tomcat-9.0-doc/config/valve.html#Error_Report_Valve