Use this tag for Spring's RestTemplate, a class for client-side HTTP communications and RESTful principles enforcement.
I am consuming a RESTful JSON API using Spring's RestTemplate and Jackson. In some cases we may receive a Status 401 (…
java spring api jackson resttemplateI struggled with an extrange spring behavior using RestTemplate (org.springframework.web.client.RestTemplate) without success. I use in my …
java spring rest resttemplateI am currently working on integration of a third party application with our local reporting system. I would like to …
java spring apache basic-authentication resttemplateI have the following definition for PersonDTO: public class PersonDTO { private String id private String firstName; private String lastName; private …
json spring resttemplateI am using URL class to read an InputStream from it. Is there any way I can use RestTemplate for …
java inputstream resttemplateI'm having a problem using Spring restTemplate. For now i'm sending a PUT request for a restful service and that …
java spring rest resttemplateI am using Spring RestTemplate and want to make a call to another service that doesn't return any response body. …
java spring rest resttemplate asyncresttemplateI am posting information to a web service using RestTemplate.postForObject. Besides the result string I need the information in …
java spring resttemplateJust wondering if RestTemplate out of the box uses connection pooling or does it simply establish a new connection each …
spring connection-pooling resttemplateI am using Tomcat7, Spring framework for ReST web services. I am trying to call an https web service using …
java spring rest resttemplate