1Mono<MyCustomResponse> result = webClient.post()
2 .header(HttpHeaders.CONTENT_TYPE, "application/json")
3 .body(BodyInserters.fromObject(request))
4 .retrieve()
5 .subscribe(response -> log.info(response),
6 throwable -> throw new CustomException(throwable.getMessage()));
7