日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

4.3. postForObject

發(fā)布時(shí)間:2025/6/15 编程问答 16 豆豆
生活随笔 收集整理的這篇文章主要介紹了 4.3. postForObject 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

4.3.1.?傳遞對象

@RequestMapping("/restful/post/{id}")@ResponseBodyprivate static String restfullPost(@PathVariable String id) {final String uri = "http://inf.netkiller.cn/detail/html/{tid}/{cid}/{id}.html";Map<String, String> params = new HashMap<String, String>();params.put("tid", "2");params.put("cid", "2");params.put("id", id);City city = new City("Shenzhen", "Guangdong");RestTemplate restTemplate = new RestTemplate();String result = restTemplate.postForObject(uri, city, String.class, params);return result;}

4.3.2.?傳遞數(shù)據(jù)結(jié)構(gòu) MultiValueMap

@RequestMapping("/findByMobile")public String findByMobile() {System.out.println("****************************findByMobile******************************");final String uri = "http://www.netkiller.cn/account/getMemberByMobile.json";MultiValueMap<String, String> map = new LinkedMultiValueMap<String, String>();try {map.add("prefix", "86");map.add("mobile", "13698041116");map.add("_pretty_", "false");} catch (Exception e) {e.printStackTrace();}RestTemplate restTemplate = new RestTemplate();String result = restTemplate.postForObject(uri, map, String.class);System.out.println(map.toString());System.out.println(result);return result;}



原文出處:Netkiller 系列 手札
本文作者:陳景峯
轉(zhuǎn)載請與作者聯(lián)系,同時(shí)請務(wù)必標(biāo)明文章原始出處和作者信息及本聲明。

總結(jié)

以上是生活随笔為你收集整理的4.3. postForObject的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。