5

私はJavaとSpringの初心者で、例から学びたいと思っています。

すぐに使える構成/インストールを使用しています

  • MacOSX
  • IDEとしてのSpringsourceツールスイート
  • 春 2.8.1.RELEASE
  • vfabric-tc-server-developer-2.6.1.RELEASE

「Spring Template Project」に基づいて新しいプロジェクトを生成しようとしました。次に、「Spring MVC Project」を選択しました。サンプル プロジェクトが生成されます。その後、何も変更せずに、「Run As」で「home.jsp」ページを実行しようとしました。Web サーバーが起動し、最後にコンソール タブにエラーが表示されました。

「appServlet」という名前の DispatcherServlet で、URI [/myproject/] の HTTP 要求のマッピングが見つかりません

そして、これらの Web ページのこの他の出力:

  • http://localhost:8080/myproject/WEB-INF/views/home.jsp
  • http://localhost:8080/myproject

ここに画像の説明を入力

ここで、私のプロジェクトがどのように構成されているか (STS 用に自動生成) のイメージを確認できます。

ここに画像の説明を入力

なにが問題ですか?

ここでは、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>

</web-app>

root-context.xmlファイルには、この内容が含まれています。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

    <!-- Root Context: defines shared resources visible to all other web components -->

</beans>

最後に、servlet-context.xmlにこのコンテンツが含まれます。

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->

    <!-- Enables the Spring MVC @Controller programming model -->
    <annotation-driven />

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
    <resources mapping="/resources/**" location="/resources/" />

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
    <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <beans:property name="prefix" value="/WEB-INF/views/" />
        <beans:property name="suffix" value=".jsp" />
    </beans:bean>

    <context:component-scan base-package="com.mycompany.myapp" />

</beans:beans>

誰かがそれを解決するアイデアを持っていますか?

4

3 に答える 3

1

Spring's convention is to assume that the <servlet-name> in the web.xml for the DispatcherServlet matches the beginning of the Spring servlet context XML file. Rename servlet-context.xml to appServlet-context.xml and see if that helps.

于 2012-01-13T10:13:29.957 に答える
0

WEB-INFの下のすべてに外部からアクセスできるわけではなく、MVCフレームワークのポイントは、ビューにディスパッチする前にコントローラーを呼び出すことです。したがって、JSPを直接呼び出すことはとにかく行わないでください。

また、おそらくルートURLにSpringコントローラーがマップされていないため、URLには何もありませんhttp://localhost:8080/myproject/

于 2012-01-13T10:04:01.913 に答える
0

「home」という名前の ModelAndView インスタンスを返すコントローラーをアプリケーションに追加します。次に、そのコントローラーへのハンドラー マッピングを構成し、次のような URL を使用して Web アプリへのアクセスを試みますhttp://localhost:8080/myproject/home.do。詳細については、こちらこちらをご覧ください。

于 2012-01-13T10:16:08.230 に答える