微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

restTemplete webService in spring

spring rest mvc使用RestTemplate远程接口调用


主要代码如下: 

import java.util.HashMap; 
import java.util.Map; 

import org.springframework.web.client.RestTemplate; 

/** 
* RestTemplate提供了一系列调用spring mvc rest(或者说 spring rest webservice)接口 
* 包括 get/post/delete/put/ 

*/ 
public class Resttemplate { 

/** 
* @param args 
*/ 
public static void main(String[] args) { 
RestTemplate restTemplate = new RestTemplate();   

//get方式*********************************************************************************************************** 

// //参数直接放在URL中 
// String message = restTemplate.getForObject("http://localhost:8080/yongbarservice/appstore/appgoods/restTemplate?name=zhaoshijie&id=80",String.class ); 
// 
// 
// //参数使用MAP传递 
// Map<String,Object> urlvariables = new HashMap<String,Object>(); 
// urlvariables.put("name","zhaoshijie"); 
// urlvariables.put("id",80); 
// String message2 = restTemplate.getForObject("http://localhost:8080/yongbarservice/appstore/appgoods/restTemplate",String.class,urlvariables); 



//delete方式*********************************************************************************************************** 

//delete方法(注意:delete方法没有返回值,说明,id=0这个参数在服务器端可以不定义该参数,直接使用request获取) 
// restTemplate.delete("http://localhost:8080/yongbarservice/appstore/appgoods/deleteranking?id=0"); 




//post方式*********************************************************************************************************** 
//使用MAP传递参数 
// Map<String,80); 
// String message3 = restTemplate.postForObject("http://localhost:8080/yongbarservice/appstore/appgoods/restTemplate",null,urlvariables); 

//直接使用URL传递参数 
// String message = restTemplate.postForObject("http://localhost:8080/yongbarservice/appstore/appgoods/restTemplate?name=zhaoshijie&id=80",String.class ); 



//put方式*********************************************************************************************************** 
//注意:delete方法没有返回值,说明,id=0这个参数在服务器端可以不定义该参数,直接使用request获取 
restTemplate.put("http://localhost:8080/yongbarservice/appstore/appgoods/restTemplate?name=zhaoshijie&id=80",null); 



// System.out.println(message); 
// System.out.println(message2); 
// System.out.println(message3); 



 

 

可参考博客:  http://yangjizhong.iteye.com/blog/600540  http://yangjizhong.iteye.com/blog/600680 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐