<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
本文是精講RestTemplate第3篇,前篇的blog存取地址如下:
RestTemplate在Spring或非Spring環境下使用精講
RestTemplate實現多種底層HTTP使用者端類庫的切換用法
RestTemplate可以傳送HTTP GET請求,經常使用到的方法有兩個:
getForObject()
getForEntity()
二者的主要區別在於,getForObject()返回值是HTTP協定的響應體。getForEntity()返回的是ResponseEntity,ResponseEntity是對HTTP響應的封裝,除了包含響應體,還包含HTTP狀態碼、contentType、contentLength、Header等資訊。
為了方便後續開發測試,首先介紹一個網站給大家。JSONPlaceholder是一個提供免費的線上REST API的網站,我們在開發時可以使用它提供的url地址測試下網路請求以及請求引數。或者當我們程式需要獲取一些模擬資料、模擬圖片時也可以使用它。
在Spring Boot環境下寫一個單元測試用例,以String型別接收響應結果資訊
@SpringBootTest class ResttemplateWithSpringApplicationTests { @Resource private RestTemplate restTemplate; @Test void testSimple() { String url = "http://jsonplaceholder.typicode.com/posts/1"; String str = restTemplate.getForObject(url, String.class); System.out.println(str); } }
getForObject第二個引數為返回值的型別,String.class以字串的形式接受getForObject響應結果,
在Spring Boot環境下寫一個單元測試用例,以java POJO物件接收響應結果資訊
@Test public void testPoJO() { String url = "http://jsonplaceholder.typicode.com/posts/1"; PostDTO postDTO = restTemplate.getForObject(url, PostDTO.class); System.out.println(postDTO.toString()); }
輸出列印結果如下:
POJO的定義如下,根據JSON String的資料格式定義。
@Data public class PostDTO { private int userId; private int id; private String title; private String body; }
存取http://jsonplaceholder.typicode.com/posts 可以獲得JSON陣列方式的請求結果
下一步就是我們該如何接收,使用方法也很簡單。在Spring Boot環境下寫一個單元測試用例,以陣列的方式接收請求結果。
@Test public void testArrays() { String url = "http://jsonplaceholder.typicode.com/posts"; PostDTO[] postDTOs = restTemplate.getForObject(url, PostDTO[].class); System.out.println("陣列長度:" + postDTOs.length); }
請求的結果被以陣列的方式正確接收,輸出如下:
陣列長度:100
以下的幾個請求都是在存取"http://jsonplaceholder.typicode.com/posts/1",只是使用了預留位置語法,這樣在業務使用上更加靈活。
使用預留位置的形式傳遞引數:
String url = "http://jsonplaceholder.typicode.com/{1}/{2}"; PostDTO postDTO = restTemplate.getForObject(url, PostDTO.class, "posts", 1);
另一種使用預留位置的形式:
String url = "http://jsonplaceholder.typicode.com/{type}/{id}"; String type = "posts"; int id = 1; PostDTO postDTO = restTemplate.getForObject(url, PostDTO.class, type, id);
我們也可以使用 map 裝載引數:
String url = "http://jsonplaceholder.typicode.com/{type}/{id}"; Map<String,Object> map = new HashMap<>(); map.put("type", "posts"); map.put("id", 1); PostDTO postDTO = restTemplate.getForObject(url, PostDTO.class, map);
上面的所有的getForObject請求傳參方法,getForEntity都可以使用,使用方法上也幾乎是一致的,只是在返回結果接收的時候略有差別。使用ResponseEntity<T> responseEntity
來接收響應結果。用responseEntity.getBody()獲取響應體。響應體內容同getForObject方法返回結果一致。剩下的這些響應資訊就是getForEntity比getForObject多出來的內容。
HttpStatus statusCode = responseEntity.getStatusCode();
獲取整體的響應狀態資訊
int statusCodeValue = responseEntity.getStatusCodeValue();
獲取響應碼值
HttpHeaders headers = responseEntity.getHeaders();
獲取響應頭等
@Test public void testEntityPoJo() { String url = "http://jsonplaceholder.typicode.com/posts/5"; ResponseEntity<PostDTO> responseEntity = restTemplate.getForEntity(url, PostDTO.class); PostDTO postDTO = responseEntity.getBody(); // 獲取響應體 System.out.println("HTTP 響應body:" + postDTO.toString()); //以下是getForEntity比getForObject多出來的內容 HttpStatus statusCode = responseEntity.getStatusCode(); // 獲取響應碼 int statusCodeValue = responseEntity.getStatusCodeValue(); // 獲取響應碼值 HttpHeaders headers = responseEntity.getHeaders(); // 獲取響應頭 System.out.println("HTTP 響應狀態:" + statusCode); System.out.println("HTTP 響應狀態碼:" + statusCodeValue); System.out.println("HTTP Headers資訊:" + headers); }
輸出列印結果
以上就是RestTemplate傳送HTTP GET請求使用方法詳解的詳細內容,更多關於RestTemplate傳送HTTP GET請求用法的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45