做爲一個Java後端,須要經過HTTP請求其餘的網絡資源能夠說是一個比較常見的case了;通常怎麼作呢?java
可能大部分的小夥伴直接撈起Apache的HttpClient開始作,或者用其餘的一些知名的開源庫如OkHttp, 固然原生的HttpURLConnection也是沒問題的git
本篇博文則主要關注點放在Sprig的生態下,利用RestTemplate
來發起Http請求的使用姿式github
在介紹如何使用RestTemplate以前,咱們先拋出一些小目標,至少須要知道經過RestTemplate能夠作些什麼,以及咱們要用它來幹些什麼web
簡單的給出了一下常見的問題以下spring
上面的問題比較多,目測不是一篇博文能夠弄完的,所以對這個拆解一下,本篇主要關注在RestTemplate的簡單Get/Post請求的使用方式上json
撈出源碼,看一下其給出的一些經常使用接口,基本上能夠分爲下面幾種後端
// get 請求
public <T> T getForObject();
public <T> ResponseEntity<T> getForEntity();
// head 請求
public HttpHeaders headForHeaders();
// post 請求
public URI postForLocation();
public <T> T postForObject();
public <T> ResponseEntity<T> postForEntity();
// put 請求
public void put();
// pathch
public <T> T patchForObject
// delete
public void delete() // options public Set<HttpMethod> optionsForAllow // exchange public <T> ResponseEntity<T> exchange() 複製代碼
上面提供的幾個接口,基本上就是Http提供的幾種訪問方式的對應,其中exchange卻又不同,後面細說跨域
從上面的接口命名上,能夠看出可使用的有兩種方式 getForObject
和 getForEntity
,那麼這兩種有什麼區別?數組
ResponseEntity
封裝類中GetForObject
便可getForEntit
爲了驗證RestTemplate的使用姿式,固然得先提供一個後端的REST服務,這了直接用了我我的的一個古詩詞的後端接口,來做爲簡單的Get測試使用服務器
請求鏈接: https://story.hhui.top/detail?id=666106231640
返回結果:
{
"status": {
"code": 200,
"msg": "SUCCESS"
},
"result": {
"id": 666106231640,
"title": "西塞山二首(今謂之道士磯,即興國軍大冶縣",
"author": "王周",
"content": "西塞名山立翠屏,濃嵐橫入半江青。\n千尋鐵鎖無由問,石壁空存道者形。\n匹婦頑然莫問因,匹夫何去望千春。\n翻思岵屺傳詩什,舉世曾無化石人。",
"explain": "",
"theme": "無",
"dynasty": "唐詩"
}
}
複製代碼
首先看下完整的接口簽名
@Nullable
public <T> T getForObject(String url, Class<T> responseType, Object... uriVariables) throws RestClientException ;
@Nullable
public <T> T getForObject(String url, Class<T> responseType, Map<String, ?> uriVariables) throws RestClientException ;
@Nullable
public <T> T getForObject(URI url, Class<T> responseType) throws RestClientException;
複製代碼
有三個重載的方法,從接口上也比較容易看出如何使用,其中有點疑惑的則是第一鍾,參數應該怎麼傳了,下面給出上面幾種的使用姿式
public class RestTestmplateTest {
private RestTemplate restTemplate;
@Before
public void init() {
restTemplate = new RestTemplate();
}
@lombok.Data
static class InnerRes {
private Status status;
private Data result;
}
@lombok.Data
static class Status {
int code;
String msg;
}
@lombok.Data
static class Data {
long id;
String theme;
String title;
String dynasty;
String explain;
String content;
String author;
}
@Test
public void testGet() {
// 使用方法一,不帶參數
String url = "https://story.hhui.top/detail?id=666106231640";
InnerRes res = restTemplate.getForObject(url, InnerRes.class);
System.out.println(res);
// 使用方法一,傳參替換
url = "https://story.hhui.top/detail?id={?}";
res = restTemplate.getForObject(url, InnerRes.class, "666106231640");
System.out.println(res);
// 使用方法二,map傳參
url = "https://story.hhui.top/detail?id={id}";
Map<String, Object> params = new HashMap<>();
params.put("id", 666106231640L);
res = restTemplate.getForObject(url, InnerRes.class, params);
System.out.println(res);
// 使用方法三,URI訪問
URI uri = URI.create("https://story.hhui.top/detail?id=666106231640");
res = restTemplate.getForObject(uri, InnerRes.class);
System.out.println(res);
}
}
複製代碼
看上面的testcase,後面兩個方法的使用沒什麼好說的,主要看一下org.springframework.web.client.RestTemplate#getForObject(java.lang.String, java.lang.Class<T>, java.lang.Object...)
的使用姿式
{?}
來表明坑位,根據實際的傳參順序來填充{xx}
, 而這個xx,對應的就是map中的key上面執行後的截圖以下
既然getForObject有三種使用方法,那麼getForEntity理論上也應該有對應的三種方式
public <T> ResponseEntity<T> getForEntity(String url, Class<T> responseType, Object... uriVariables) throws RestClientException ;
public <T> ResponseEntity<T> getForEntity(String url, Class<T> responseType, Map<String, ?> uriVariables) throws RestClientException;
public <T> ResponseEntity<T> getForEntity(URI url, Class<T> responseType) throws RestClientException;
複製代碼
由於使用姿式和上面一致,所以只拿一個進行測試
@Test
public void testGetForEntity() {
String url = "https://story.hhui.top/detail?id=666106231640";
ResponseEntity<InnerRes> res = restTemplate.getForEntity(url, InnerRes.class);
System.out.println(res);
}
複製代碼
對這個,咱們主要關注的就是ResponseEntity封裝中,多了哪些東西,截圖以下
從上面能夠看出,多了兩個東西
從上面的接口說明上看,post請求除了有forObject 和 forEntity以外,還多了個forLocation;其次post與get一個明顯的區別就是傳參的姿式問題,get的參數通常會待在url上;post的則更常見的是經過表單的方式提交
所以接下來關注的重點在於forLocation是什麼,以及如何傳參
首先建立一個簡單的提供POST請求的REST服務,基於Spring-boot簡單搭建一個,以下
@ResponseBody
@RequestMapping(path = "post", method = {RequestMethod.GET, RequestMethod.OPTIONS, RequestMethod.POST})
public String post(HttpServletRequest request, @RequestParam(value = "email", required = false) String email, @RequestParam(value = "nick", required = false) String nick) {
Map<String, Object> map = new HashMap<>();
map.put("code", "200");
map.put("result", "add " + email + " # " + nick + " success!");
return JSON.toJSONString(map);
}
複製代碼
首先看一下接口簽名
public <T> T postForObject(String url, @Nullable Object request, Class<T> responseType, Object... uriVariables) throws RestClientException ;
public <T> T postForObject(String url, @Nullable Object request, Class<T> responseType, Map<String, ?> uriVariables) throws RestClientException;
public <T> T postForObject(URI url, @Nullable Object request, Class<T> responseType) throws RestClientException ;
複製代碼
上面的三個方法,看起來和前面並無太大的區別,只是多了一個request參數,那麼具體的使用如何呢?
下面分別給出使用用例
@Test
public void testPost() {
String url = "http://localhost:8080/post";
String email = "test@hhui.top";
String nick = "一灰灰Blog";
MultiValueMap<String, String> request = new LinkedMultiValueMap<>();
request.add("email", email);
request.add("nick", nick);
// 使用方法三
URI uri = URI.create(url);
String ans = restTemplate.postForObject(uri, request, String.class);
System.out.println(ans);
// 使用方法一
ans = restTemplate.postForObject(url, request, String.class);
System.out.println(ans);
// 使用方法一,可是結合表單參數和uri參數的方式,其中uri參數的填充和get請求一致
request.clear();
request.add("email", email);
ans = restTemplate.postForObject(url + "?nick={?}", request, String.class, nick);
System.out.println(ans);
// 使用方法二
Map<String, String> params = new HashMap<>();
params.put("nick", nick);
ans = restTemplate.postForObject(url + "?nick={nick}", request, String.class, params);
System.out.println(ans);
}
複製代碼
上面分別給出了三種方法的調用方式,其中post傳參區分爲兩種,一個是uri參數即拼接在url中的,還有一個就是表單參數
MultiValueMap
封裝,一樣是kv結構和前面的使用姿式同樣,無非是多了一層包裝而已,略過不講
這個與前面有點區別,從接口定義上來講,主要是
POST 數據到一個URL,返回新建立資源的URL
一樣提供了三個接口,分別以下,須要注意的是返回結果,爲URI對象,即網絡資源
public URI postForLocation(String url, @Nullable Object request, Object... uriVariables) throws RestClientException ;
public URI postForLocation(String url, @Nullable Object request, Map<String, ?> uriVariables) throws RestClientException ;
public URI postForLocation(URI url, @Nullable Object request) throws RestClientException ;
複製代碼
那麼什麼樣的接口適合用這種訪問姿式呢?
想一下咱們通常登陸or註冊都是post請求,而這些操做完成以後呢?大部分都是跳轉到別的頁面去了,這種場景下,就可使用 postForLocation
了,提交數據,並獲取返回的URI,一個測試以下
首先mock一個後端接口
@ResponseBody
@RequestMapping(path = "success")
public String loginSuccess(String email, String nick) {
return "welcome " + nick;
}
@RequestMapping(path = "post", method = {RequestMethod.GET, RequestMethod.OPTIONS, RequestMethod.POST})
public String post(HttpServletRequest request, @RequestParam(value = "email", required = false) String email, @RequestParam(value = "nick", required = false) String nick) {
return "redirect:/success?email=" + email + "&nick=" + nick + "&status=success";
}
複製代碼
訪問的測試用例,基本上和前面的同樣,沒有什麼特別值得一說的
@Test
public void testPostLocation() {
String url = "http://localhost:8080/post";
String email = "test@hhui.top";
String nick = "一灰灰Blog";
MultiValueMap<String, String> request = new LinkedMultiValueMap<>();
request.add("email", email);
request.add("nick", nick);
// 使用方法三
URI uri = restTemplate.postForLocation(url, request);
System.out.println(uri);
}
複製代碼
執行結果以下
獲取到的就是302跳轉後端url,細心的朋友可能看到上面中文亂碼的問題,如何解決呢?
一個簡單的解決方案就是url編碼一下
@RequestMapping(path = "post", method = {RequestMethod.GET, RequestMethod.OPTIONS, RequestMethod.POST},
produces = "charset/utf8")
public String post(HttpServletRequest request, @RequestParam(value = "email", required = false) String email, @RequestParam(value = "nick", required = false) String nick) throws UnsupportedEncodingException {
return "redirect:/success?email=" + email + "&nick=" + URLEncoder.encode(nick, "UTF-8") + "&status=success";
}
複製代碼
上面目前只給出了Get/Post兩種請求方式的基本使用方式,並無涉及到更高級的如添加請求頭,添加證書,設置代理等,高級的使用篇等待下一篇出爐,下面小結一下上面的使用姿式
get請求中,參數通常都是帶在url上,對於參數的填充,有兩種方式,思路一致都是根據實際的參數來填充url中的佔位符的內容;根據返回結果,也有兩種方式,一個是隻關心返回對象,另外一個則包含了返回headers信心
參數填充
http://story.hhui.top?id={0}
的 urlgetForObject(String url, Class<T> responseType, Object... uriVariables)
http://story.hhui.top?id={id}
的 urlgetForObject(String url, Class<T> responseType, Map<String, ?> uriVariables)
其實還有一種傳參方式,就是path參數,填充方式和上面同樣,並無什麼特殊的玩法,上面沒有特別列出
返回結果
getForObject
getForEntity
MultiValueMap
中,做爲第二個參數 Request
來提交postForLocation
,返回的是一個URI對象,即適用於返回網絡資源的請求方式最前面提了多點關於網絡請求的常見case,可是上面的介紹,明顯只處於基礎篇,咱們還須要關注的有
上面可能還停留在應用篇,對於源碼和實現有興趣的話,問題也就來了
小小的一個工具類,其實東西還挺多的,接下來的小目標,就是針對上面提出的點,逐一進行研究
一灰灰的我的博客,記錄全部學習和工做中的博文,歡迎你們前去逛逛
盡信書則不如,已上內容,純屬一家之言,因我的能力有限,不免有疏漏和錯誤之處,如發現bug或者有更好的建議,歡迎批評指正,不吝感激
小灰灰Blog&公衆號
知識星球