当前位置:   article > 正文

resttemplate发送post请求

resttemplate发送post
  1. /**
  2. * 向目的URL发送post请求
  3. * @param url 目的url
  4. * @param params 发送的参数
  5. * @return ResultVO
  6. */
  7. public static ResultVO sendPostRequest(String url, MultiValueMap<String, String> params){
  8. RestTemplate client = new RestTemplate();
  9. HttpHeaders headers = new HttpHeaders();
  10. HttpMethod method = HttpMethod.POST;
  11. // 以表单的方式提交
  12. headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);
  13. //将请求头部和参数合成一个请求
  14. HttpEntity<MultiValueMap<String, String>> requestEntity = new HttpEntity<>(params, headers);
  15. //执行HTTP请求,将返回的结构使用ResultVO类格式化
  16. ResponseEntity<ResultVO> response = client.exchange(url, method, requestEntity, ResultVO.class);
  17. return response.getBody();
  18. }

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

闽ICP备14008679号