Eclipse抛出错误 - “web.html中不存在的”main.html“文件名引用”web.xml的404错误

时间:2013-03-20 05:44:53

标签: eclipse spring-mvc struts http-status-code-404 web.xml

我在Eclipse中运行简单的Web项目时遇到了一个问题。

我将首先演示创建项目的步骤: -

1)新春模板项目。
2)选择Spring MVC项目 3)单击“完成” 4)现在我在“src”下的“webapps”文件夹中创建一个新文件名“login.html” 5)现在我尝试在web.xml中添加welcome-file标签。
6)当我这样做时,我在Eclipse的web.xml中获得了上述警告 7)如果我运行应用程序,我会收到404错误

这是我的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 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">

<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>

<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<!-- Processes application requests -->
<servlet>
    <servlet-name>appServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>appServlet</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

<welcome-file-list>
    <welcome-file>login.html</welcome-file>
</welcome-file-list>

这是我的login.html

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
Hello
</body>
</html>

请帮助我,我不明白错误到底是什么 提前谢谢。

1 个答案:

答案 0 :(得分:1)

如果您希望欢迎文件正常工作,请尝试更改 servlet-mapping ,如下所示:

<servlet-mapping>
    <servlet-name>appServlet</servlet-name>
    <url-pattern>/something/</url-pattern>
</servlet-mapping>

目前,所有请求都将转到Spring的调度程序servlet,并查找&#34; /&#34;的请求映射。在这种情况下,控制器需要处理&#34; /&#34;的请求。这将返回login.html作为视图。您可以查看here以获取快速入门示例。