如何使用基本http主机的命名空间配置/ xml配置在Spring MVC 4中配置RestTemplate。
答案 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);