欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

RestTemplate使用

程序员文章站 2022-06-26 13:20:35
...

1.post,带有 多个参数请求
地址形式:http://10.10.129.19/test?clientId={demoClientId}&clientSecret={demoClientSecret}
参考文档

//地址形式:http://10.10.129.19/test?clientId={demoClientId}&clientSecret={demoClientSecret}
MultiValueMap<String, String> requestEntity = new LinkedMultiValueMap<>();
String clientId = demoClientId;
String clientSecret = demoClinetSecret;
requestEntity.add("clientId", clientId);
requestEntity.add("clientSecret", clientSecret);
String s = REST_TEMPLATE.postForObject("http://10.10.129.19/test", requestEntity, String.class);

2.post,带有json请求
参考文档
JSON与对象的转换