2

我已将 web.xml 配置如下:

<?xml version="1.0" encoding="UTF-8"?>
<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_2_5.xsd"
    version="2.5">

    <!-- Config here. -->
<servlet>
    <servlet-name>SpringConfig</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
  </servlet>

  <servlet-mapping>
    <servlet-name>SpringConfig</servlet-name>
        <url-pattern>*.htm</url-pattern>
  </servlet-mapping>

  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath: SpringConfig.xml</param-value>
  </context-param>

  <listener>    

    <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>

  </listener>

  <error-page>
    <exception-type>404</exception-type>
    <location>/404error.html</location>
   </error-page>

</web-app>

这是位于 WebContent 文件夹中的简单 404error.html 页面:

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
The Page You Are Looking For Is Not Available.
</body>
</html>

但是我没有超过自定义页面,你们能告诉我我缺少什么吗?

4

3 回答 3

1

尝试这个。它在我的所有应用程序中都运行良好。

<error-page>
        <error-code>404</error-code>
        <location>/404error.html</location>
</error-page>
于 2013-08-08T05:21:02.473 回答
0

这似乎是您提到的拼写错误,htm而不是html此处提到的 web.xml 中的 servlet-mapping:

    <url-pattern>*.htm</url-pattern>

尝试将其更改为:

    <url-pattern>*.html</url-pattern>
于 2013-08-07T19:12:56.573 回答
0

更改exception-typeexception-code

<error-page>
    <exception-code>404</exception-code>
    <location>/404error.html</location>
</error-page>
于 2013-08-08T03:34:16.163 回答