RestTemplate post请求传递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;
上代码:
这个是我的接口
-
@PostMapping("/insert/test")
-
public Integer insertInto(@RequestBody Map<String, String> map) {
-
System.out.println(map.toString());
-
System.out.println(map.size());
-
return map.size();
-
}
-
}
然后是调用部分
-
HttpHeaders headers = new HttpHeaders();
-
headers.setContentType(MediaType.APPLICATION_JSON_UTF8);//设置参数类型和编码
-
-
Map<String,String> map1 = new HashMap<>();//建立简单的String,String的map
-
map1.put("email", "first.last@example.com");
-
map1.put("email1", "first.last@example.com1");
-
map1.put("email2", "first.last@example.com2");
-
HttpEntity<Map<String,String>> request1 = new HttpEntity<>(map1, headers);//包装到HttpEntity
-
//postForEntity -》 直接传递map参数
-
ResponseEntity<Integer> respo1 = restTemplate.postForEntity("http://localhost:8895/insert/test", map1, Integer.class);
-
//postForEntity -》 传递httpentity参数
-
ResponseEntity<Integer> respo2 = restTemplate.postForEntity("http://localhost:8895/insert/test",request1 , Integer.class);
-
//postForObject -》 直接传递map参数
-
Integer respo3= restTemplate.postForObject("http://localhost:8895/insert/test", map1, Integer.class);
-
//postForObject -》 传递httpentity参数
-
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
- 点赞
- 收藏
- 关注作者
评论(0)