首頁 > 軟體

RestTemplate傳送HTTP GET請求使用方法詳解

2022-03-17 10:01:14

前言

本文是精講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地址測試下網路請求以及請求引數。或者當我們程式需要獲取一些模擬資料、模擬圖片時也可以使用它。

一、 getForObject() 方法

1.1.以String的方式接受請求結果資料

在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響應結果,

1.2.以POJO物件的方式接受結果資料

在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;
}

1.3.以陣列的方式接收請求結果

存取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

1.4.使用預留位置號傳參的幾種方式

以下的幾個請求都是在存取"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);

二、getForEntity()方法

上面的所有的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其它相關文章!


IT145.com E-mail:sddin#qq.com