List of usage examples for org.springframework.web.client RestClientResponseException getResponseBodyAsString
public String getResponseBodyAsString()
From source file:com.tianjunwei.RestTemplateTest.java
public static void main(String[] args) { RestTemplate restTemplate = new RestTemplate(); try {/*from w ww .j a va 2 s . co m*/ System.err.println(restTemplate.getForObject("http://localhost:8090/product/get.action", String.class)); } catch (RestClientResponseException e) { System.err.println(e.getResponseBodyAsString()); } }