Spring RestTemplateでフォームデータをPOSTする方法


147

次の(機能する)curlスニペットをRestTemplate呼び出しに変換したい:

curl -i -X POST -d "email=first.last@example.com" https://app.example.com/hr/email

emailパラメータを正しく渡すにはどうすればよいですか?次のコードでは、404 Not Foundレスポンスが返されます。

String url = "https://app.example.com/hr/email";

Map<String, String> params = new HashMap<String, String>();
params.put("email", "first.last@example.com");

RestTemplate restTemplate = new RestTemplate();
ResponseEntity<String> response = restTemplate.postForEntity( url, params, String.class );

PostManで正しい呼び出しを定式化しようとしましたが、本文で「form-data」パラメーターとしてemailパラメーターを指定することで、正しく機能するようにできます。RestTemplateでこの機能を実現する正しい方法は何ですか?


restTemplate.exchange();を試してください。
私たちはボルグ

ここで指定したURLの許容可能なコンテンツタイプは何ですか?
Tharsan Sivakumar


@TharsanSivakumar URLはJSONを返します。
シム、2014

回答:


355

POSTメソッドは、HTTPリクエストオブジェクトとともに送信する必要があります。また、リクエストにはHTTPヘッダーまたはHTTPボディ、あるいはその両方が含まれる場合があります。

したがって、HTTPエンティティを作成し、ヘッダーとパラメーターを本文で送信します。

HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);

MultiValueMap<String, String> map= new LinkedMultiValueMap<String, String>();
map.add("email", "first.last@example.com");

HttpEntity<MultiValueMap<String, String>> request = new HttpEntity<MultiValueMap<String, String>>(map, headers);

ResponseEntity<String> response = restTemplate.postForEntity( url, request , String.class );

http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/client/RestTemplate.html#postForObject-java.lang.String-java.lang.Object-java.lang。クラスjava.lang.Object ...-


1
あなたはより多くの情報のためにもこのリンクを参照することがtechie-mixture.blogspot.com/2016/07/...
Tharsanシバクマー

1
あなたは私の日を救いました、resttemplateを使用することはかなり明白であることを期待しましたが、いくつかのトリックがあります!
Sergii Getman 2017年

1
ResponseEntity<String> response = new RestTemplate().postForEntity(url, request, String.class);取得中org.springframework.http.converter.HttpMessageNotWritableExc‌​eption: Could not write content: No serializer found for class java.util.Collections$3
Shivkumar Mallesappa 2017

以下はリクエストデータargsが文字列の配列であるように、他のものが文字列であるが、そのうちの1つが文字列タイプ[]である場合にボディパラメータを渡す方法curl -X POST --data '{"file": "/xyz.jar", "className": "my.class.name", "args": ["100"]}' -H "Content-Type: application/json" localhost:1234/batches
khawarizmi

2
したがって、これは文字列に対してのみ機能します...ペイロードでJavaオブジェクトを送信したい場合はどうなりますか?
devssh

23

混合データをPOSTする方法:1つのリクエストでFile、String []、String。

必要なものだけを使用できます。

private String doPOST(File file, String[] array, String name) {
    RestTemplate restTemplate = new RestTemplate(true);

    //add file
    LinkedMultiValueMap<String, Object> params = new LinkedMultiValueMap<>();
    params.add("file", new FileSystemResource(file));

    //add array
    UriComponentsBuilder builder = UriComponentsBuilder.fromHttpUrl("https://my_url");
    for (String item : array) {
        builder.queryParam("array", item);
    }

    //add some String
    builder.queryParam("name", name);

    //another staff
    String result = "";
    HttpHeaders headers = new HttpHeaders();
    headers.setContentType(MediaType.MULTIPART_FORM_DATA);

    HttpEntity<LinkedMultiValueMap<String, Object>> requestEntity =
            new HttpEntity<>(params, headers);

    ResponseEntity<String> responseEntity = restTemplate.exchange(
            builder.build().encode().toUri(),
            HttpMethod.POST,
            requestEntity,
            String.class);

    HttpStatus statusCode = responseEntity.getStatusCode();
    if (statusCode == HttpStatus.ACCEPTED) {
        result = responseEntity.getBody();
    }
    return result;
}

POSTリクエストでは、本文と次の構造にファイルが含まれます。

POST https://my_url?array=your_value1&array=your_value2&name=bob 

私はこの方法を試しましたが、うまくいきませんでした。マルチパート形式のデータを使用してPOSTリクエストを作成する際に問題が発生しています。ここでは、ソリューションで私を導くことができれば、私の質問ですstackoverflow.com/questions/54429549/...
ディープLathia

8

SpringのRestTemplateを使用してPOST残りの呼び出しを行う完全なプログラムを次に示します。

import java.util.HashMap;
import java.util.Map;

import org.springframework.http.HttpEntity;
import org.springframework.http.ResponseEntity;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.client.RestTemplate;

import com.ituple.common.dto.ServiceResponse;

   public class PostRequestMain {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        MultiValueMap<String, String> headers = new LinkedMultiValueMap<String, String>();
        Map map = new HashMap<String, String>();
        map.put("Content-Type", "application/json");

        headers.setAll(map);

        Map req_payload = new HashMap();
        req_payload.put("name", "piyush");

        HttpEntity<?> request = new HttpEntity<>(req_payload, headers);
        String url = "http://localhost:8080/xxx/xxx/";

        ResponseEntity<?> response = new RestTemplate().postForEntity(url, request, String.class);
        ServiceResponse entityResponse = (ServiceResponse) response.getBody();
        System.out.println(entityResponse.getData());
    }

}

7
それはフォームデータの代わりにapplication / jsonを投稿します
MaciejStępyra2017

ResponseEntity<?> response = new RestTemplate().postForEntity(url, request, String.class);。取得中org.springframework.http.converter.HttpMessageNotWritableException: Could not write content: No serializer found for class java.util.Collections$3
Shivkumar Mallesappa 2017

プログラム全体を共有してもらえますか、サンプルサンプルプログラム@ShivkumarMallesappa
Piyush Mittalを

あなたが交換した場合application/jsonでコンテンツタイプをapplication/x-www-form-urlencodedあなたが買ってあげるorg.springframework.web.client.RestClientExceptionを:いいえHttpMessageConverterをjava.util.HashMapをし、コンテンツタイプの「/ x-www-form-urlencodedでアプリケーション」 -を参照stackoverflow.com/q / 31342841/355438
Lu55

-3

あなたのURL文字列は、あなたが渡すマップのための変数マーカーを必要とします、例えば:

String url = "https://app.example.com/hr/email?{email}";

または、クエリパラメータを文字列に明示的にコーディングして、最初にマップを渡す必要がないようにすることもできます。

String url = "https://app.example.com/hr/email?email=first.last@example.com";

https://stackoverflow.com/a/47045624/1357094も参照してください

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.