0

もう一度、専門家からのヘルプ/ガイドを探しているiam、

私の問題は、データを取得するためにrestfullサーバーを呼び出す動的Webサイトを作成する必要があることです。すべてのリクエストはPOSTであり、jsonオブジェクトを返します。Iamは、SpringRestTemplateを使用してサーバーを呼び出すことを考えています。私のサーバーは正常に動作します。つまり、現在、一部のAndroidアプリとAppleアプリは同じAPIに接続し、正常に動作します。しかし、RestTemplateを使用してサーバーに接続しようとすると、いくつかのエラーが発生します

org.springframework.web.client.HttpClientErrorException:400不正なリクエスト

これは私のサーバーです、

@Controller
public class ABCController
{

     @RequestMapping(method = RequestMethod.POST, value = "/user/authenticate")
     public @ResponseBody LoginResponse login(@RequestParam("email") String email,@RequestParam("password") String password,@RequestParam("facebookId") String facebookId) {

        LoginRequest request = new LoginRequest(email, password, facebookId);

        UserBusiness userBusiness = UserBusinessImpl.getInstance();

        return userBusiness.login(request);

    }
}

そして、これは私のサーバーの春の構成です、

    <?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:mvc="http://www.springframework.org/schema/mvc"
        xmlns:jee="http://www.springframework.org/schema/jee"
       xsi:schemaLocation="http://www.springframework.org/schema/beans                         http://www.springframework.org/schema/beans/spring-beans-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/mvc                           http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
http://www.springframework.org/schema/jee                          http://www.springframework.org/schema/jee/spring-jee-3.0.xsd">  


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

    <bean id="jsonViewResolver" class="org.springframework.web.servlet.view.json.MappingJacksonJsonView" />
    <bean id="viewResolver" class="org.springframework.web.servlet.view.BeanNameViewResolver" />


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

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


    <bean name="abcController" class="com.abc.def.controller.ABCController" />  

    <mvc:annotation-driven />
</beans>

これは、RestTemplateを使用してサーバーを呼び出そうとする方法です。

<bean id="restTemplate" class="org.springframework.web.client.RestTemplate">
    <!-- <constructor-arg ref="httpClientFactory"/> -->

    <property name="messageConverters">
        <list>
            <bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
               <property name="objectMapper">
                    <ref bean="JacksonObjectMapper" />
               </property>
            </bean>

        </list>
    </property>
</bean>

    <bean id="JacksonObjectMapper" class="org.codehaus.jackson.map.ObjectMapper" />

これが私がそれを使用する方法です(テスト用)

ApplicationContext applicationContext = new ClassPathXmlApplicationContext("root-context.xml");
     RestTemplate twitter = applicationContext.getBean("restTemplate", RestTemplate.class);

     MultiValueMap<String, String> map = new LinkedMultiValueMap<String, String>();
    map.add("email", "x1@test.com");
     map.add("password", "abc");
     map.add("facebookId", null);

    HttpEntity<LoginResponse> response= twitter.exchange("https://abc.com/Rest/api/user/authenticate", HttpMethod.POST, map, LoginResponse.class);

私のログイン応答クラスとそのサブクラス、

  1. LoginResponse

public class LoginResponse extends BaseResponse {
private LoginBase data; ゲッターとセッターで
}

  1. ログインベース

パブリッククラスLoginBase{プライベート文字列トークン;
プライベートユーザーユーザー;

 with getters and setters

}
  1. ユーザー

パブリッククラスユーザー{

  private Integer userId; 
  private String email;   
  private Integer status;     
  private String name;

        with getters and setters
}
  1. 最後にBaseResponse

パブリッククラスBaseResponse{
保護された文字列statusCode;

    with getter and setter }

私の質問は次のとおりです。1。サーバーを呼び出すときにこのエラーが発生するのはなぜですか

情報:org.springframework.beans.factory.support.DefaultListableBeanFactory-org.springframework.beans.factory.support.DefaultListableBeanFactory@63de8f2dのシングルトンの事前インスタンス化:Beanの定義[restTemplate、JacksonObjectMapper]; 工場階層のルート警告:org.springframework.web.client.RestTemplate-「https://abc.com/Rest/api/user/authenticate」に対するPOSTリクエストの結果は400(不正なリクエスト)になりました。スレッド「main」でのエラーハンドラー例外の呼び出しorg.springframework.web.client.HttpClientErrorException:org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:90)のorg.springframework.web.clientでの400BadRequest。 org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:451)のRestTemplate.handleResponseError(RestTemplate.java:494)

2.jsonレスポンスをjavaLoginResponseにマッピングするにはどうすればよいですか?

4

1 に答える 1