restTemplate POST 実装例
Spring Frameworkが提供するHTTPクライアントです。
ContentTypeはapplication/json
を使い、Stringのデータを送信する実装例です。
もちろんDTOの定義もできますが、今回は割愛。
controller実装
- リクエストボディはString
- 処理はただ出力するだけの簡単な実装
@PostMapping("post")
public String saveFile(@RequestBody String reqData, @RequestHeader HttpHeaders headers) {
try {
System.out.println(reqData);
System.out.println(headers);
System.out.println(headers.get("Authorization").get(0));
return "OK";
} catch (Exception e) {
e.printStackTrace();
return "Error";
}
}
リクエスト送信側
- ContentTypeは
application/json
- リクエストボディには”test”を指定。
- HttpEntity<String>にてリクエストを生成
public static void main(String[] args) throws IOException {
try {
String url = "http://localhost:8080/post";
String auth = "test:pass";
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
headers.add("Authorization", "Basic " + Base64.getEncoder().encodeToString(auth.getBytes()));
HttpEntity<String> requestEntity = new HttpEntity<>("test", headers);
RestTemplate restTemplate = new RestTemplate();
ResponseEntity<String> response = restTemplate.postForEntity(url, requestEntity, String.class);
if (response.getStatusCode() == HttpStatus.OK) {
System.out.println("success");
}
} catch (Exception e) {
e.printStackTrace();
}
}