3

Spring環境で非常に単純なhelloworldの種類のRestFulWebサービスを試していますが、「org.springframework.web.servlet.DispatcherServletnoHandlerFound」という名前のDispatcherServletのURI[..]を持つHTTPリクエストのマッピングが見つかりません。 。いろいろ試してみましたが、何もうまくいきません。これまでのところ、これは私が持っているものです:

web.xml

<listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<servlet>
    <servlet-name>spitter</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>spitter</servlet-name>
    <url-pattern>/testWs/*</url-pattern>
</servlet-mapping>

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spitter-servlet.xml</param-value>
</context-param>

spitter-servlet.xml

<beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:mvc="http://www.springframework.org/schema/mvc"
        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">

        <mvc:annotation-driven />

        <context:component-scan base-package="org.resttest.bso" />

        <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="prefix" value="/WEB-INF/views/" />
            <property name="suffix" value=".jsp" />
        </bean>

</beans>

そして、Controllerクラス。

package org.resttest.bso;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.ui.ModelMap;

@Controller
@RequestMapping("/partners")
public class PartnerController {

public PartnerController(){
    System.out.println("******* From the constructor ***** " );
}

@RequestMapping("method=RequestMethod.GET")
public String getPartner(ModelMap model){
    try{
        model.addAttribute("message", "Spring 3 MVC Hello World");
        System.out.println("******* Test message " );
    }catch(Exception ex){
        System.out.println("******* Exception thrown ... " + ex.getMessage());
    }
    return "test";
}
}

そしてWEB-INF/views / test.jsp

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><%@page
language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<html>
<head>
    <title>test</title>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
</head>
<body>
<h1>Message : ${message}</h1>   
</body>
</html>

サーバーが起動すると、これも表示されます:[11/28/12 9:24:02:803 EST] 00000013 DefaultAnnota Iorg.springframework.web.servlet.handler.AbstractUrlHandlerMappingregisterHandlerマップされたURLパス[/partners/ method = RequestMethod .GET]をハンドラー'partnerController'に

しかし、url:localhost:9080 / contextRoot / testWs / components /を使用してアクセスしようとすると、エラーが発生します:[11/28/12 9:31:07:034 EST] 00000044 PageNotFoundWorg.springframework.web.servlet。 DispatcherServletnoHandlerFound名前が「spitter」のDispatcherServletにURI[/contextRoot / testWs/partners/]を含むHTTPリクエストのマッピングが見つかりません

どんな助けでも大歓迎です。フォーラムでの提案に基づいていくつかの変更を試みましたが、何も機能していないようです。

ありがとう

4

2 に答える 2

3

あなたが持っている@RequestMapping("method=RequestMethod.GET")

引用符を削除します

@RequestMapping(method=RequestMethod.GET)

そして、それはうまくいくはずです。

于 2012-11-28T16:26:17.730 に答える