Notice
Recent Posts
Recent Comments
Link
«   2025/09   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

Flèche

[테스트코드]httpentity, testresttemplate.exchange 본문

spring

[테스트코드]httpentity, testresttemplate.exchange

철학자 2021. 3. 8. 21:02

1. HttpEntity requestEntity = new HttpEntity<>(requestDto);

  • 클래스

2. ResponseEntity responseEntity = restTemplate.exchange(url, HttpMethod.PUT, requestEntity, Long.class);

  • url로
  • put method => 언제나 같은 결과를 보장하는 method
  • requestEntity를 body로 보낸디
  • Long은 리턴타입