Use this tag for Spring's RestTemplate, a class for client-side HTTP communications and RESTful principles enforcement.
I'm not familiar with Spring RestTemplate. But for this project I have to use Spring RestTemplate to send a POST …
java spring resttemplateI have a class like that: public class Wrapper<T> { private String message; private T data; public String …
java spring generics jackson resttemplateI am trying to send a request to following address. The certificate is not valid and I would like to …
java spring-mvc ssl resttemplateI am working on a project in which I need to make a HTTP URL call to my server which …
java multithreading static connection-pooling resttemplateI designed a webservice to perform a task if request parameters are OK, or return 401 Unauthorized HTTP status code if …
rest spring-mvc http-status-code-401 resttemplateAn Abstract controller class requires List of objects from REST. While using Spring RestTemplate its not mapping it to required …
java resttemplate spring-rest spring-webI am calling a ReST service through RestTemplate and trying to override ResponseErrorHandler in Spring 3.2 to handle custom error codes. …
spring rest spring-mvc resttemplateI have a rest service which send an 404 error when the resources is not found. Here the source of my …
spring rest resttemplateI'm using the Java Spring Resttemplate for getting a json via a get request. The JSON I'm getting has instead …
java json utf-8 character-encoding resttemplateMy REST client uses RestTemplate to obtain a List of objects. ResponseEntitiy<List> res = restTemplate.postForEntity(getUrl(), myDTO, …
java rest spring-mvc restful-architecture resttemplate