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
- java
- query
- 계산 검색 방식
- 정렬
- 마크다운 테이블
- code
- 인터페이스
- 빅 오 표기법
- 트리
- WebClient
- 리스트
- 클린
- 내부 정렬
- mysql
- 선형 리스트
- 클래스
- 쿠키
- @RequiredArgsConstructor
- 자료구조
- CleanCode
- 마크다운
- JsonNode
- @NoArgsConstructor
- 스택 큐 차이
- 배열
- @ComponentScan
- 클린코드
- 쿼리메소드
- 코드
- 연결 리스트
Archives
- Today
- Total
목록API (1)
Developer Cafe
webClient를 사용해 API호출하기, Get하기
www.baeldung.com/webflux-webclient-parameters WebClient Requests with Parameters | Baeldung Learn how to reactively consume REST API endpoints with WebClient from Spring Webflux. www.baeldung.com 1. 간단하게 String으로 출력해보기 String result = WebClient.create("https://api.dev.zzimcar.co.kr") .get() .uri("/review/list?getCnt=10&sp=0") .retrieve() .bodyToMono(String.class) .block(); System.out.println(res..
Spring/WebClient
2021. 5. 4. 17:28