RestTemplate post请求传递map

举报
轻狂书生FS 发表于 2020/11/30 23:57:41 2020/11/30
【摘要】 前根据网上的说法,      1:传递的MultiValueMap,但是在请求中用MultiValueMap接收,会报参数类型mismatch;      2:传递的MultiValueMap,但是在请求中用Map接收,没有报错,但是收到的map是空,不是null,只是一个空map; 自己研究:      直接传map就行,调接口传的map中的泛型和接口收参数的泛型一...

前根据网上的说法,

     1:传递的MultiValueMap,但是在请求中用MultiValueMap接收,会报参数类型mismatch;

     2:传递的MultiValueMap,但是在请求中用Map接收,没有报错,但是收到的map是空,不是null,只是一个空map;

自己研究:

     直接传map就行,调接口传的map中的泛型和接口收参数的泛型一致(例如Map<String,String>,接口中的参数也得是Map<String,String>)

headers要设置contenttype的话,设置为application/json;然后接口处加一个@RequestBody就ok;

上代码:

这个是我的接口  


  
  1. @PostMapping("/insert/test")
  2. public Integer insertInto(@RequestBody Map<String, String> map) {
  3. System.out.println(map.toString());
  4. System.out.println(map.size());
  5. return map.size();
  6. }
  7. }

然后是调用部分


  
  1. HttpHeaders headers = new HttpHeaders();
  2. headers.setContentType(MediaType.APPLICATION_JSON_UTF8);//设置参数类型和编码
  3. Map<String,String> map1 = new HashMap<>();//建立简单的String,String的map
  4. map1.put("email", "first.last@example.com");
  5. map1.put("email1", "first.last@example.com1");
  6. map1.put("email2", "first.last@example.com2");
  7. HttpEntity<Map<String,String>> request1 = new HttpEntity<>(map1, headers);//包装到HttpEntity
  8. //postForEntity -》 直接传递map参数
  9. ResponseEntity<Integer> respo1 = restTemplate.postForEntity("http://localhost:8895/insert/test", map1, Integer.class);
  10. //postForEntity -》 传递httpentity参数
  11. ResponseEntity<Integer> respo2 = restTemplate.postForEntity("http://localhost:8895/insert/test",request1 , Integer.class);
  12. //postForObject -》 直接传递map参数
  13. Integer respo3= restTemplate.postForObject("http://localhost:8895/insert/test", map1, Integer.class);
  14. //postForObject -》 传递httpentity参数
  15. Integer respo4= restTemplate.postForObject("http://localhost:8895/insert/test", request1, Integer.class);

结果:

请注意:

直接传递httpentity类型的话,resttemplate会判断是否是httpentity类型,是的话,传递到下一层进行解析;

直接传递map参数,resttemplate解析不是httpentity,会把map包装到httpentity里面,和我们代码做得是一样的操作,这里的默认参数类型应该也是application/json;

接收的话,就是在参数哪里加一个@requestbody

 

就这样。搞了一天,试过各种转,原来直接传就行,别忘了参数类型和@requestbody
————————————————
版权声明:本文为CSDN博主「laolvbig」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/laolvbig/article/details/82225681

文章来源: blog.csdn.net,作者:轻狂书生FS,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/LookForDream_/article/details/105551132

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。