Top "Resttemplate" questions

Use this tag for Spring's RestTemplate, a class for client-side HTTP communications and RESTful principles enforcement.

RestClientException: Could not extract response. no suitable HttpMessageConverter found

Using the curl command: curl -u 591bf65f50057469f10b5fd9:0cf17f9b03d056ds0e11e48497e506a2 …

json spring rest spring-mvc resttemplate
Basic authentication for REST API using spring restTemplate

I am completely new in RestTemplate and basically in the REST APIs also. I want to retrieve some data in …

java spring resttemplate jira-rest-api
RestTemplate: How to send URL and query parameters together

I am trying to pass path param and query params in a URL but I am getting a weird error. …

java resttemplate url-parameters query-parameters path-parameter
How to autowire RestTemplate using annotations

When I try to autowire Spring RestTemplate, I am getting following error: nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: …

java spring spring-mvc resttemplate
Disabling SSL Certificate Validation in Spring RestTemplate

I am having two Spring based web apps A and B, on two different machines. I want to make a …

spring validation ssl-certificate resttemplate
Sending Multipart File as POST parameters with RestTemplate requests

I am working with Spring 3 and RestTemplate. I have basically, two applications and one of them have to post values …

spring-mvc multipartform-data resttemplate
Could not autowire field:RestTemplate in Spring boot application

I am getting below exception while running spring boot application during start up: org.springframework.beans.factory.BeanCreationException: Error creating …

spring maven spring-boot resttemplate
Multipart File Upload Using Spring Rest Template + Spring Web MVC

I am trying to upload a File using RestTemplate with the following code. MultiValueMap<String, Object> multipartMap = new …

java spring spring-mvc resttemplate
How to disable SSL certificate checking with Spring RestTemplate?

I am trying to write an integration test where our test launches an embedded HTTPS server using Simple. I created …

java spring resttemplate self-signed
HTTP get with headers using RestTemplate

How can I send a GET request using the Spring RestTemplate? Other questions have used POST, but I need to …

android spring http get resttemplate