Come pubblicare i dati del modulo con Spring RestTemplate?


149

Voglio convertire il seguente frammento (funzionante) di ricciolo in una chiamata RestTemplate:

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

Come posso passare correttamente il parametro email? Il codice seguente genera una risposta 404 non trovata:

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 );

Ho provato a formulare la chiamata corretta in PostMan e posso farlo funzionare correttamente specificando il parametro email come parametro "form-data" nel corpo. Qual è il modo corretto per ottenere questa funzionalità in un RestTemplate?


Prova restTemplate.exchange ();
Siamo Borg

Qual è il tipo di contenuto accettabile dell'URL che hai fornito qui?
Tharsan Sivakumar,

Guarda questo blog che sta cercando di fare la stessa cosa, credo che techie-mixture.blogspot.com/2016/07/…
Tharsan Sivakumar,

@TharsanSivakumar L'URL restituirà JSON.
sim

Risposte:


357

Il metodo POST deve essere inviato lungo l'oggetto richiesta HTTP. E la richiesta può contenere intestazione HTTP o corpo HTTP o entrambi.

Quindi creiamo un'entità HTTP e inviamo le intestazioni e il parametro nel corpo.

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


1
Puoi fare riferimento anche a questo link per maggiori informazioni techie-mixture.blogspot.com/2016/07/…
Tharsan Sivakumar,

1
Mi hai salvato la giornata, mi aspettavo che l'uso del resttemplate fosse abbastanza ovvio, ma ci sono alcuni trucchi!
Sergii Getman,

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

Come passare il parametro body quando gli altri sono String ma uno di questi è di tipo String [], come in seguito i dati di richiesta argssono una matrice di Stringcurl -X POST --data '{"file": "/xyz.jar", "className": "my.class.name", "args": ["100"]}' -H "Content-Type: application/json" localhost:1234/batches
khawarizmi

2
Quindi funziona solo per le stringhe ... E se volessi inviare un oggetto Java nel payload?
devssh

23

Come POSTare dati misti: File, String [], String in una richiesta.

Puoi usare solo ciò di cui hai bisogno.

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;
}

La richiesta POST avrà File nel suo corpo e nella struttura successiva:

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

Ho provato questo metodo ma non ha funzionato per me. Sto riscontrando un problema con una richiesta POST con i dati in formato multipart. Ecco la mia domanda se potesse guidare con una soluzione stackoverflow.com/questions/54429549/...
Profondo Lathia

8

ecco il programma completo per effettuare una chiamata di riposo POST utilizzando RestTemplate di Spring.

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
Che pubblica application / json invece dei dati del modulo
Maciej Stępyra il

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

potresti condividere l'intero programma o farmi sapere che condividerò un esempio di programma di esempio @ ShivkumarMallesappa
Piyush Mittal

Se sostituisci il application/jsontipo di contenuto con il comandoapplication/x-www-form-urlencoded otterrai org.springframework.web.client.RestClientException: No HttpMessageConverter per java.util.HashMap e tipo di contenuto "application / x-www-form-urlencoded" - vedi stackoverflow.com/q / 31342841/355438
Lu55

-3

La tua stringa URL ha bisogno di marcatori variabili per far funzionare la mappa che passi, come:

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

Oppure potresti esplicitamente codificare i parametri della query nella stringa per cominciare e non dover passare affatto la mappa, come:

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

Vedi anche https://stackoverflow.com/a/47045624/1357094

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.