0

練習用に単純なSpring MVCアプリケーションを作成しようとしていますが、このエラーが発生し続けます:

「mvc-dispatcher」という名前の DispatcherServlet の URI を使用した HTTP 要求のマッピングが見つからず、Tomcat から 404 エラーが発生します。

これは私の mvc-dispatcher-servlet.xml です

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

<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" />

<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />

<mvc:annotation-driven />

<context:component-scan base-package="controllers" />

<bean
    id="viewResolver"
    class="org.springframework.web.servlet.view.InternalResourceViewResolver" >

    <property
        name="viewClass"
        value="org.springframework.web.servlet.view.JstlView" />

    <property
        name="suffix"
        value=".jsp" />
</bean>

</beans>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee   http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">  
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
    <url-pattern>*.do</url-pattern>
</servlet-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/mvc-dispatcher-servlet.xml</param-value>
</context-param>
<listener>
   <listener-class>
      org.springframework.web.context.ContextLoaderListener
   </listener-class>
</listener>

</web-app>

そして、これは私のコントローラーです

package controllers;

import org.springframework.stereotype.Controller;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
@RequestMapping("/welcome.do")
public class HelloWorldController{

@RequestMapping(method=RequestMethod.GET)
public ModelAndView helloWorld(){
    System.out.println("**Hit controller**");
    ModelAndView model = new ModelAndView("spring");
    model.addObject("msg", "hello world");
    return model;
}
}

ディスパッチャー サーブレットで Bean を使用するとコントローラーを動作させることができましたが、何らかの理由で、アノテーションを使用して正しいハンドラー マッピングを取得できません。私の mvc-dispatcher-servlet.xml ファイルに問題があり、何か助けがあれば幸いです。

4

3 に答える 3

0

あなたの「mvc-dispatcher-servlet.xml」は正しく見えます。私にとってはうまくいきます。正しい URL を使用していることを確認してください。そして、この簡単な例を見ることができますSpring MVC Hello World Annotation Example

于 2013-01-28T09:03:17.293 に答える