WebClientCustomizer (1) 썸네일형 리스트형 [Spring Boot] REST Client 커스터마이징 1. WebClient : 기본으로 Reactor Netty의 HTTP 클라이언트 사용 ① 로컬 커스터마이징 WebClient webClient = builder.baseUrl("http://localhost:8080").build(); Mono helloMono = webClient.get().uri("/hello") .retrieve().bodyToMono(String.class); ② 글로벌 커스터마이징 - WebClientCustomizer //@Bean //public WebClientCustomizer webClientCustomizer() { // return new WebClientCustomizer() { // @Override // public void customize(WebClien.. 이전 1 다음