0

これは以前に尋ねられた質問と似ていますが、それでも異なり、私はそれを理解することができません。

パス'/users /contacts'のリクエストを処理するMVCで実装されたRESTWebサービスのコントローラーがあります。問題は、クライアントテストアプリで、そのパスをヒットしようとすると、次のようになります。

No mapping found for HTTP request with URI /users/users/contacts in DispatcherServlet with name 'webservice'

繰り返しますが、クライアントテストアプリで、リクエストパスを「/ WHATEVERusers / contacts」のようなものに変更すると、「/ WHATEVERusers/contacts」を解決できないというエラーが表示されます。

コントローラーによって処理されたパスをヒットしようとすると、それがマングルされる理由はわかりませんが、ガベージパスを要求すると、マングルされません。

目の前にコードはありませんが、家に帰ると質問に答えることができます。

これが私のテストクライアントからのコードです:

private static void TestGetContacts()
{
    UserCreateRequest request = new UserCreateRequest();

    Gson gson = new Gson();

    try

    {
        HttpClient client = new DefaultHttpClient();

        StringEntity string  = new StringEntity(gson.toJson(request), HTTP.UTF_8);
        string.setContentType("application/json");

        URI uri = URIUtils.createURI("http", "localhost", 8888, "/users/contacts", null, null);

        HttpPost post = new HttpPost(uri);
        post.setEntity(string);

        client.execute(post);
    }
    catch(Exception ex)
    {
        System.out.println(ex.getMessage());
    }
}

これが私のコントローラークラスです:

@Controller
@RequestMapping("/users/contacts")
public class UserContactService
{
private @Autowired ApplicationContext appContext;

@RequestMapping(method=RequestMethod.POST, consumes="application/json", produces="application/json")
public GetContactsResponse GetContacts(@RequestBody UserCreateRequest request)
{
    GetContactsResponse response = new GetContactsResponse();

    return response;
}
}

これが私のサーブレット設定です:

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

<!--
    - The controllers are autodetected POJOs labeled with the @Controller annotation.
-->
<context:component-scan base-package="com.impersonal.server.restservice.users"/>                

<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
    <property name="messageConverters">
        <list>
            <ref bean="jsonConverter" />
            <!-- 
            <ref bean="marshallingConverter" />
            <ref bean="atomConverter" />
            -->
        </list>
    </property>
</bean>

<bean id="jsonConverter" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
    <property name="supportedMediaTypes" value="application/json" />
</bean>

そして、これが私のWeb設定です。

<?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_2_5.xsd"
version="2.5">

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:/**/applicationContext.xml</param-value>
</context-param>

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

<servlet-mapping>
    <servlet-name>webservice</servlet-name>
    <url-pattern>/*</url-pattern>
</servlet-mapping>

<welcome-file-list>
    <welcome-file>index.html</welcome-file>
</welcome-file-list>

更新: リクエストはコントローラーで処理されますが、リクエストが処理された後、サーバーは/ users / users/contactsを解決できなかったことを出力します。何らかの理由で、別のリクエストがDispsatcherServletに到達していますが、その理由はわかりません。

ありがとう、マーク

4

2 に答える 2

1

@ResponseBodyメソッドシグネチャに追加すると、問題が解決しました。私が実際にそれを必要としていたことに気づかなかった、そしてそれを持っていなかったことが本当に奇妙な副作用をもたらした。

于 2012-05-03T15:54:05.697 に答える
0

クラスの上ではなく、メソッドの上にある@RequestMappingにURLを配置してみましたか?時々URIマッピングの問題を解決するかもしれないことに気づきました。

同じクラスの異なるメソッドでより多くのURLを処理できます。クラスの上に@RequestMapping( "/ users")を追加し、次の方法でさまざまなメソッドを追加することもできます。

  • @RequestMapping( "/ contacts")は/ users/contactsにマップされます
  • @RequestMapping( "/ customers")は/ users/customersにマップされます
于 2012-05-02T06:46:13.013 に答える