0

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

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

1) 新建 Spring 模板项目。
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>

请帮我解决这个问题,我不明白错误到底是什么。
提前致谢。

4

1 回答 1

1

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

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

目前,所有请求都将发送到 Spring 的调度程序 servlet 并查找“/”的请求映射。在这种情况下,需要控制器来处理“/”请求,该请求将返回 login.html 作为视图。您可以在此处查看快速入门示例。

于 2013-03-20T08:53:54.120 回答