0

困っており、助けていただきたいです。私はSpring MVCの初心者です(そしてSpringはまったく)。http://www.mkyong.com/spring3/spring-3-mvc-hello-world-example/に従っていますが、機能していません。ウェルカム ファイル(index.jsp)を追加しました。(http://localhost:8080/SpringMVC)と入力すると問題ありません。しかし、コントローラー パターン(http://localhost:8080/SpringMVC/welcome)を追加すると、機能しません (HTTP ステータス 404)。ここに私の設定:

web.xml

<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>Spring Web MVC Application</display-name>
    <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>/</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>
    <welcome-file-list>
        <welcome-file>/index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

mvc-dispatcher-servlet.xml

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
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
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/context/spring-context-3.0.xsd">
    <context:component-scan base-package="com.mkyong.common.controller" />
    <bean
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix">
            <value>/WEB-INF/pages/</value>
        </property>
        <property name="suffix">
            <value>.jsp</value>
        </property>
    </bean>
</beans>

私のフォルダ構造は次のとおりです。

-> src
   -> main
      -> java
         -> com
            -> mkyong
               -> common
                  -> controller
                     -> HelloController.java
      -> resources
      -> webapp
         -> index.jsp
         -> WEB-INF
            -> mvc-dispatcher-servlet.xml
            -> web.xml
            -> pages
               -> hello.jsp

誰かが私を助けることができますか?

4

4 に答える 4

1

404 は、要求されたリソースが見つからないことを意味します。コントローラーに次のアノテーションが付けられていることを確認してください。

@Controller and @RequestMapping("/welcome") 

リンクから:

@Controller
@RequestMapping("/welcome")
public class HelloController {

    @RequestMapping(method = RequestMethod.GET)
    public String printWelcome(ModelMap model) {

        model.addAttribute("message", "Spring 3 MVC Hello World");
        return "hello";

    }

}
于 2012-08-06T18:08:15.003 に答える
0

サーブレットが「/」にマップされており、ヒットするコントローラーが「/welcome」の要求を受け入れています

行う必要のあるリクエストは(http:// localhost:8080 / welcome)である必要があります。彼の例でなぜ彼がその余分な「SpringMVC」を持っているのかわかりません。

また、に追加<mvc:annotation-driven/>してmvc-dispatcher-servlet.xml、コントローラーでアノテーションが使用されていることを確認します。また、mvcXML名前空間も追加します。私の名前空間は次のようになります。

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:security="http://www.springframework.org/schema/security"
xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.1.xsd
    http://www.springframework.org/schema/security
    http://www.springframework.org/schema/security/spring-security-3.1.xsd">

コントローラーが正しく機能して物事をシンプルに保つまで、ウェルカムファイルを削除することをお勧めします

于 2012-08-06T18:16:59.673 に答える
0

「/」にマップされたコントローラが必要です。

@Controller
@RequestMapping("/")
public class StartController {

  @RequestMapping(method = RequestMethod.GET)
  public String printWelcome(ModelMap model) {

    model.addAttribute("message", "Spring 3 MVC Hello World");
    return "hello";

  }

}
于 2012-08-07T20:00:03.380 に答える