0

Eclipseで単純なWebプロジェクトを実行しているときに、問題が発生しました。

最初に、プロジェクトを作成する手順を示します:-

1)新しい春のテンプレートプロジェクト。
2)SpringMVCプロジェクトを選択します。
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-mapping>
    <servlet-name>appServlet</servlet-name>
    <url-pattern>/something/</url-pattern>
</servlet-mapping>

現在、すべてのリクエストはSpringのディスパッチャサーブレットに送信され、「/」のリクエストマッピングを探します。この場合、login.htmlをビューとして返す「/」のリクエストを処理するためにコントローラーが必要です。クイックスタートの例については、こちらをご覧ください。

于 2013-03-20T08:53:54.120 に答える