如何在Spring MVC 4中配置rest模板?

时间:2014-11-08 00:51:44

标签: java spring rest resttemplate

如何使用基本http主机的命名空间配置/ xml配置在Spring MVC 4中配置RestTemplate。

1 个答案:

答案 0 :(得分:1)

使用RestTemplate类非常简单。 Here是一个很好的概述。

RestTemplate rest = new RestTemplate();
String response;

response = rest.getForObject("http://www.google.com", String.class);

Object postData = null;
response = rest.postForObject("http://yourdomain.com/example", postData, String.class);