当前位置:   article > 正文

Java RestTemplate post请求传递参数遇到的坑(后端表单方式接收参数)_postforentity

postforentity

    最近使用Spring 的 RestTemplate 工具类请求接口的时候发现参数传递的一个坑,也就是当我们把参数封装在Map里面的时候,Map 的类型选择。 使用RestTemplate post请求的时候主要可以通过三种方式实现

    1、调用postForObject方法  2、使用postForEntity方法 3、调用exchange方法

    postForObjectpostForEntity方法的区别主要在于可以在postForEntity方法中设置header的属性,当需要指定header的属性值的时候,使用postForEntity方法exchange方法和postForEntity类似,但是更灵活,exchange还可以调用get、put、delete请求。使用这三种方法调用post请求传递参数,当接口是表单接收参数的时候,Map不能定义为以下两种类型(url使用占位符进行参数传递时除外),HashMap是以请求体传递,MultiValueMap是表单传递!

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

   经过测试,我发现这两种map里面的参数都不能被后台接收到,这个问题困扰我两天,终于,当我把Map类型换成LinkedMultiValueMap后,参数成功传递到后台

MultiValueMap<String, Object> paramMap = new LinkedMultiValueMap<String, Object>();

    经过测试,正确的传参方式如下

  1. public static void main(String[] args) {
  2.         RestTemplate template = new RestTemplate();
  3.         String url = "http://192.168.2.40:8081/channel/channelHourData/getHourNewUserData";
  4.         // 封装参数,千万不要替换为Map与HashMap,否则参数无法传递
  5.         MultiValueMap<String, Object> paramMap = new LinkedMultiValueMap<String, Object>();
  6.         paramMap.add("dt", "20180416");
  7.         // 1、使用postForObject请求接口
  8.         String result = template.postForObject(url, paramMap, String.class);
  9.         System.out.println("result1==================" + result);
  10.         // 2、使用postForEntity请求接口
  11.         HttpHeaders headers = new HttpHeaders();
  12.         HttpEntity<MultiValueMap<String, Object>> httpEntity = new HttpEntity<MultiValueMap<String, Object>>(paramMap,headers);
  13.         ResponseEntity<String> response2 = template.postForEntity(url, httpEntity, String.class);
  14.         System.out.println("result2====================" + response2.getBody());
  15.         // 3、使用exchange请求接口
  16.         ResponseEntity<String> response3 = template.exchange(url, HttpMethod.POST, httpEntity, String.class);
  17.         System.out.println("result3====================" + response3.getBody());
  18. }

GET方式传参说明

如果是get请求,又想要把参数封装到map里面进行传递的话,Map需要使用HashMap,且url需要使用占位符,如下:

  1. public static void main(String[] args) {
  2. RestTemplate restTemplate2 = new RestTemplate();
  3. String url = "http://127.0.0.1:8081/interact/getData?dt={dt}&ht={ht}";
  4. // 封装参数,这里是HashMap
  5. Map<String, Object> paramMap = new HashMap<String, Object>();
  6. paramMap.put("dt", "20181116");
  7. paramMap.put("ht", "10");
  8. //1、使用getForObject请求接口
  9. String result1 = template.getForObject(url, String.class, paramMap);
  10. System.out.println("result1====================" + result1);
  11. //2、使用exchange请求接口
  12. HttpHeaders headers = new HttpHeaders();
  13. headers.set("id", "lidy");
  14. HttpEntity<MultiValueMap<String, Object>> httpEntity = new HttpEntity<MultiValueMap<String, Object>>(null,headers);
  15. ResponseEntity<String> response2 = template.exchange(url, HttpMethod.GET, httpEntity, String.class,paramMap);
  16. System.out.println("result2====================" + response2.getBody());
  17. }

ps:post请求也可以通过占位符的方式进行传参(类似get),但是看起来不优雅,推荐使用文中的方式

补充:使用RestTemplate调用delete、put请求请参考我的另一篇文章:https://blog.csdn.net/LDY1016/article/details/100121146

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/302773
推荐阅读
相关标签
  

闽ICP备14008679号