web-dev-qa-db-ja.com

の仕方 POST Spring RestTemplateでデータを作成しますか?

次の(動作中の)カールスニペットをRestTemplate呼び出しに変換したいです。

curl -i -X POST -d "[email protected]" 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", "[email protected]");

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

私はPostManで正しい呼び出しを定式化しようとしました、そしてボディの中で "form-data"パラメータとしてemailパラメータを指定することによってそれが正しく働くようにすることができます。 RestTemplateでこの機能を実現するための正しい方法は何ですか?

90
sim

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", "[email protected]");

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.Class-Java.lang.Object ...-

239

混合データをPOSTにする方法:ファイル、文字列[]、文字列を1回の要求で。

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

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 
15
Yuliia Ashomok

これは、春のRestTemplateを使ってPOST rest呼び出しを行うための完全なプログラムです。

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
Piyush Mittal