resttemplate远程接口调用 传一个map 怎么调用map参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了resttemplate远程接口调用 传一个map 怎么调用map参数相关的知识,希望对你有一定的参考价值。

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

主要代码如下: 

import java.util.HashMap; 

import java.util.Map; 

import org.springframework.web.client.RestTemplate; 

参数直接放在URL中 String message =restTemplate.getForObjectocalhost:8080/yongbarservice/appstore/appgoods/restTemplate?name=zhaoshijie&id=80",Str参数使用MAP传递 

Map<String ,Object> urlVariables = new HashMap<String,Object>(); 

urlVariables.put("name", "zhaoshijie"); 

urlVariables.put("id", 80); 

String message2restTemplate.getForObject

delete方法没有返回值,说明,id=0这个参数在服务器端可以不定义该参数,直接使用request获取 

restTemplate.putyongbarservice/appstore/appgoods/restTemplate?name=zhaoshijie&id=80",null); 

System.out.println(message); 

System.out.println(message2); 

System.out.println(message3); 

参考技术A 主要代码如下:
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 ,Object> urlVariables = new HashMap<String ,Object>();
// urlVariables.put("name", "zhaoshijie");
// urlVariables.put("id", 80);
// String message3 = restTemplate.postForObject("http://localhost:8080/yongbarservice/appstore/appgoods/restTemplate",null, String.class, urlVariables);
//直接使用URL传递参数
// String message = restTemplate.postForObject("http://localhost:8080/yongbarservice/appstore/appgoods/restTemplate?name=zhaoshijie&id=80",null, String.class );本回答被提问者采纳

restTemplate远程调用

 第二个参数为返回的数据类型

以上是关于resttemplate远程接口调用 传一个map 怎么调用map参数的主要内容,如果未能解决你的问题,请参考以下文章

微服务服务拆分原则 与 RestTemplate远程调用

RestTemplate远程调用POST请求:HTTP 415 Unsupported Media Type

RestTemplate Get请求实现传javabean参数

RestTemplate Get请求实现传javabean参数

SpringBoot系列之实现RestTemplate Get请求传javabean参数

Springboot-RestTemplate调用服务实战记录