I make a request with webClient in spring boot here is the request above:
Mono<ClientResponse> clientResponse = webClientBuilder
.build()
.post()
.uri(societe.get(0)
.getApi_login())
.contentType(MediaType.APPLICATION_JSON)
.bodyValue(
identify)
.exchange();
my question is how can i wait the result of the request before executing another instruction