250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 클래스
- WebClient
- 클린
- 선형 리스트
- 계산 검색 방식
- 빅 오 표기법
- 쿼리메소드
- 스택 큐 차이
- JsonNode
- 마크다운 테이블
- code
- query
- 자료구조
- 트리
- 코드
- 정렬
- 배열
- CleanCode
- @RequiredArgsConstructor
- 쿠키
- 클린코드
- mysql
- 마크다운
- @NoArgsConstructor
- @ComponentScan
- 내부 정렬
- 리스트
- 연결 리스트
- java
- 인터페이스
Archives
- Today
- Total
Developer Cafe
webClient를 사용해 API호출하기, Post하기 .block() 의미 본문
728x90
Mono<WriteReviewResDto> ss = WebClient.create("https://api.dev.zzimcar.co.kr")
.post()
.uri("/review/")
.bodyValue(wr)
.retrieve()
.bodyToMono(WriteReviewResDto.class); // block()이 없음
WriteReviewResDto ss = WebClient.create("https://api.dev.zzimcar.co.kr")
.post()
.uri("/review/")
.bodyValue(wr)
.retrieve()
.bodyToMono(WriteReviewResDto.class)
.block(); // block()이 있음
return WebClient.create("https://api.dev.zzimcar.co.kr")
.post()
.uri("/review/")
.bodyValue(wr) // wr, 즉 WriteReviewDto wr 의 wr 객체로 바디형태로 응답하겠다.
.retrieve()
.bodyToMono(WriteReviewResDto.class) // WriteReviewResDto객체로 요청받겠다.
.block(); // block()이 있음
셋다 같은 의미다.
728x90
'Spring > WebClient' 카테고리의 다른 글
WebClient bodyToFlux (0) | 2021.05.11 |
---|---|
webClient를 사용해 API호출하기, Get하기 (0) | 2021.05.04 |
Comments