restTemplate.postForObject接口请求

Posted jiangger

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了restTemplate.postForObject接口请求相关的知识,希望对你有一定的参考价值。

一、post请求【接口请求参数有params】

       RestTemplate restTemplate = new RestTemplate();
        String url =domesticAPP_url_Online+"readBook/listReadBookByCode";

    
        JSONObject paramsJ = JSON.parseObject(params);
        Map map = new HashMap();
        map.put("token",LoginToken);

        MultiValueMap<String, Object> postParameters =  new LinkedMultiValueMap();
        postParameters.add("params", JSON.toJSONString(map));    //http接口请求类型为json格式

        /*调用接口*/
        HttpEntity<MultiValueMap<String, Object>> request = new HttpEntity<>(postParameters,headers);
        JSONObject response = restTemplate.postForObject(url, request, JSONObject.class);

  

 

以上是关于restTemplate.postForObject接口请求的主要内容,如果未能解决你的问题,请参考以下文章