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与对象的转换
上一篇: 朱允炆有军队有粮草,怎么就输给了朱棣?
下一篇: 朱棣晚年召见一位大臣,从此不再寻找朱允炆
推荐阅读
-
使用Browserify来实现CommonJS的浏览器加载方法
-
AngularJS ng-repeat指令中使用track by子语句解决重复数据遍历错误问题
-
Apache服务器无法使用的解决方法
-
AngularJS 使用ng-repeat报错 [ngRepeat:dupes]
-
使用php实现下载生成某链接快捷方式的解决方法
-
LotusPhp笔记之:基于ObjectUtil组件的使用分析
-
vue调试工具vue-devtools安装及使用
-
Visual Studio 2017的安装与使用
-
node.js的Express服务器基本使用教程
-
JavaScript在form表单中使用button按钮实现submit提交方法