Top "Resttemplate" questions

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

Spring RestTemplate post response

I'm not familiar with Spring RestTemplate. But for this project I have to use Spring RestTemplate to send a POST …

java spring resttemplate
Generics with Spring RESTTemplate

I have a class like that: public class Wrapper<T> { private String message; private T data; public String …

java spring generics jackson resttemplate
Need to ignore certificate when using restTemplate

I am trying to send a request to following address. The certificate is not valid and I would like to …

java spring-mvc ssl resttemplate
How to use RestTemplate efficiently in Multithreaded environment?

I am working on a project in which I need to make a HTTP URL call to my server which …

java multithreading static connection-pooling resttemplate
Spring RestTemplate invoking webservice with errors and analyze status code

I 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 resttemplate
Spring RestTemplate and generic types ParameterizedTypeReference collections like List<T>

An Abstract controller class requires List of objects from REST. While using Spring RestTemplate its not mapping it to required …

java resttemplate spring-rest spring-web
Spring RestTemplate - Overriding ResponseErrorHandler

I 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 resttemplate
Spring MVC - RestTemplate launch exception when http 404 happens

I have a rest service which send an 404 error when the resources is not found. Here the source of my …

spring rest resttemplate
Java Spring resttemplate character encoding

I'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 resttemplate
Return the List<myObj> returned by ResponseEntity<List>

My REST client uses RestTemplate to obtain a List of objects. ResponseEntitiy<List> res = restTemplate.postForEntity(getUrl(), myDTO, …

java rest spring-mvc restful-architecture resttemplate