python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Java WebClient both doOnError and doOnSuccess methods happen in a single request
I'm using WebClient in a spring boot application and here is a part of my code:
WebClient webClient = setApiKey(provider);
return webClient
.post()
.uri("sms"...

Majid Roustaei
Votes: 0
Answers: 1
Asynchronous call using Spring webclient and just log the error without aborting the flow
I am trying to make an asynchronous call to a rest service using Spring webclient. I dont care if there is any exception during this call, but i want to just log if its successfull or failure (With ht...

ging
Votes: 0
Answers: 0