2012-01-13 22 views
5

私はJavaとSpringの全く新しい初心者です。名前が 'appServlet'のDispatcherServletのURI [/ myproject /]を持つHTTP要求のマッピングが見つかりません

私はすぐに設定/インストール

  • マックOSX IDE
  • 春2.8.1.RELEASE
  • のvFabric-TCとして
  • のSpringSourceツールスイートを使用しています-server-developer-2.6.1.RELEASE

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

のマッピングは、名前の のDispatcherServletにURI [/ MyProjectと/]でHTTPリクエストが見つかりません 'appServlet'

そして、これらのウェブページでは、この他の出力:

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

enter image description here

ます(自動STSのために生成された)私のプロジェクトが構成されているどのように画像を見ることができます:

enter image description here

間違っていますか?

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

ルートの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> 

そして最後にサーブレットの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> 

誰かがそれを解決するアイデアはありますか?

答えて

0

外部からはWEB-INFの下のすべてにアクセスすることはできません。MVCフレームワークのポイントは、ビューにディスパッチする前にコントローラを呼び出すことです。そのため、JSPを直接呼び出す必要はありません。

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

+0

@AlfonsoDominguezは、次の内容の「HomeController.java」と呼ばれるファイルがあります。 ' パッケージcom.mycompany.myappとします。 [...] OMITED PART [...] /** *アプリケーションホームページのリクエストを処理します。 */ @Controller パブリッククラスにHomeController { \t \t \t/** \t *は、単純にその名を返すことによってレンダリングするホームビューを選択します。 \t */ \t @RequestMapping(値= "/"、メソッド= RequestMethod.GET) \tパブリックストリングホーム(ロケールロケール、モデルモデル){ \t \t文字列str = "Serverメッセージ"。 \t \t \t \t model.addAttribute( "serverTime"、str); \t \t \t \t return "home"; \t} \t } ' あなたが言うことですか? –

+0

これは私が言ったことです。あなたは 'http:// localhost:8080/myproject/home'というURLにアクセスしようとしましたか?そのURLは設定ファイルの正しいURLのようです。 –

1

春の大会では、ウェブ内で<servlet-name>と仮定しています。DispatcherServletのxmlは、SpringサーブレットコンテキストXMLファイルの先頭と一致します。 servlet-context.xmlの名前をappServlet-context.xmlに変更してください。

+0

同じエラーが発生したことを試してみてください。実際、web.xmlファイルには、サーブレットの名前を指定する行があります...今あなたが提案したもの(そしてファイルの名前の変更)に対して変更しましたが、結果は同じです。 \t \t \t​​ contextConfigLocation \t \t \t /WEB-INF/spring/appServlet/appServlet-context.xml

0

"home"という名前のModelAndViewインスタンスを返すコントローラをアプリケーションに追加します。次に、そのコントローラへのハンドラマッピングを設定し、このようなURL(http://localhost:8080/myproject/home.do)でWebアプリケーションにアクセスしようとします。詳細はherehereです。自動生成されたプロジェクト@duffymo

関連する問題