【Spring MVC】RestTemplateを使ったAPIアクセス(exchangeを使ったPUT通信)

概要

RestTemplate#exchangeメソッドの基本的なPUT通信の使用方法についてまとめた。
動作確認を行うための事前準備については、以下に記載している。

あわせて読みたい

概要 RESTfulなAPIを呼ぶクライアントライブラリである、RestTemplateの概要についてまとめた。 RestTemplateを使用するための準備と、どんなメソッドがあるのかを紹介している。   前提 今[…]

【Spring MVC】RestTemplateの導入

 

基本的な使い方

exchangeメソッドは、HTTP メソッド(GET, POST, PUT, DELETE など)を柔軟に扱うことができる
戻り値は、HTTPステータス/ヘッダー/ボディを含むResponseEntityオブジェクトとなる

今回は基本的なPUT通信を行う方法について紹介する。

 

実装方法

RestTemplate#exchangeメソッドを使用してPUT通信を行うには、基本的に以下のように実装する。

RequestEntity<リクエストクラス> reqEntity = RequestEntity.put(URI情報).header(ヘッダー情報).body(リクエストクラス);
exchange(reqEntity, 取得したいレスポンスの型);

「RequestEntity.put」と指定することで、リクエストボディを設定してPUT通信が可能となる

戻り値は指定したレスポンスの型をボディにもつResponseEntityとなる。
尚、RequestEntityにはリクエストヘッダー/ボディ/HTTPメソッド(今回はPUT)を指定できる

 

使用例

GET通信の記事にて追加したexchangeメソッドを使用して動作確認を行う。

 

APIアクセスクラス

以下のexchangeメソッドを使用する。

 

RestClient.java


package com.example.client_prototype.biz;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.http.RequestEntity;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestTemplate;

@Component
public class RestClient {

	@Autowired
	private RestTemplate restTemplate;

	/**
	 * exchangeの利用
	 * @param <T>
	 * @param requestEntity
	 * @param responseType
	 * @return
	 */
	public <T> ResponseEntity<T> exchange(RequestEntity<?> requestEntity, Class<T> responseType) {
		return restTemplate.exchange(requestEntity, responseType);
	}

	/**
	 * exchangeの利用
	 * @param <T>
	 * @param requestEntity
	 * @param responseType
	 * @return
	 */
	public <T> ResponseEntity<List<T>> exchange(RequestEntity<?> requestEntity, ParameterizedTypeReference<List<T>> responseType) {
	    return restTemplate.exchange(requestEntity, responseType);
	}
}

 

動作確認

動作確認を行う。

 

動作確認用クラス


// URI定義
URI uri = UriComponentsBuilder
		.fromUriString("http://localhost:8080/rest_prototype/rest03/{id}")
		.buildAndExpand(2)
		.toUri();

// PUT用リクエストボディ
var updateReq = new Resource("2", "ピザ", LocalDate.of(1999, 5, 1));

// PUTリクエスト
RequestEntity<Resource> reqEntity = RequestEntity
		.put(uri)
		.header(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON_VALUE)
		.body(updateReq);
ResponseEntity<Void> resEntity = restClient.exchange(reqEntity, Void.class);

// 動作確認
System.out.println(resEntity.getStatusCode());
System.out.println(resEntity.getHeaders());
System.out.println(resEntity.getBody());

// 更新確認
RequestEntity<Void> req = RequestEntity.get(URI.create("http://localhost:8080/rest_prototype/rest05/")).build();
List<Resource> res = restClient.exchange(req, new ParameterizedTypeReference<List<Resource>>() {}).getBody();
res.forEach(r -> System.out.println(r));

 

RequestEntity
.put(uri)

指定したURIにPUTリクエストを行うRequestEntityクラスを作成している。

 

.header(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON_VALUE)

コンテンツタイプ(Content-Type)をJSON(application/json)としている。
リクエストボディをJSON形式で送るという意味。

 

.body(updateReq);

ResourceオブジェクトをPUTのリクエストボディに設定している。

 

コンソール


204 NO_CONTENT
[Date:"Wed, 26 Mar 2025 23:53:57 GMT", Keep-Alive:"timeout=20", Connection:"keep-alive"]
null
Resource(id=1, name=りんご, hogeDate=2025-02-01)
Resource(id=2, name=ピザ, hogeDate=1999-05-01)
Resource(id=3, name=らっぱ, hogeDate=2023-05-10)

 

 

まとめ

 

☑ exchangeはあらゆるHTTPメソッドを扱え、ヘッダーやボディを自由に指定できる

☑ RequestEntityクラスのputメソッドを利用してPUT通信を行う

☑ RequestEntityクラスのボディにPUT送信するオブジェクトを設定する

スポンサーリンク