restTemplate多種用法

2021-10-08 21:15:15 字數 1656 閱讀 2465

1.post請求body資料返回流

return in;或者

//設定接收返回值的格式為json

businessresponse response = resttemplate.postforobject(url, request, businessresponse.class);2.post上傳檔案

string request = wechatconstant.media_upload.replace("access_token",

.replace("com_type", type);

file file = getfile(multipartfile);

filesystemresource resource = new filesystemresource(file);

multivaluemapmap = new linkedmultivaluemap<>();

map.add("media", resource);

resttemplate resttemplate = new resttemplate();

// 傳送請求,設定請求返回資料格式為string(去除上面方法中使用的httpentity)

responseentityresponseentity = resttemplate.postforentity(request, map, string.class);

file.delete();

uploaddto uploaddto = jsonutil.getentity(responseentity.getbody(), uploaddto.class);

return uploaddto;

}private file getfile(multipartfile file) catch (ioexception e)

}return tofile;

}3,get請求很簡單

responseentityresult = resttemplate.getforentity(url, string.class);

logger.info("result = {}", result);

return result.getbody();

RestTemplate使用總結

resttemplate的介紹就不說了,總的來說用這個物件可以很方便的模擬乙個http請求。talk is cheap,show me the code,使用的是springboot整合的工程所以以下涉及到的物件都是註解式的宣告和注入,一 宣告resttemplate物件 當然,可以利用註解 bea...

RestTemplate使用總結

resttemplate的介紹就不說了,總的來說用這個物件可以很方便的模擬乙個http請求。talk is cheap,show me the code,使用的是springboot整合的工程所以以下涉及到的物件都是註解式的宣告和注入,一 宣告resttemplate物件 當然,可以利用註解 bea...

使用restTemplate隨筆

使用resttemplate訪問其他介面時 採用post方式傳參 發現服務端接受不到引數 坑了半天 記錄一下 服務端是個servlet 以post接參 所以本地使用mvc模擬了一下 方便除錯 如下 客戶端 如下 test public void test1 不能以map或hashmap代替 否則服務...