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)
RestTemplate to WebClient
I'm migrating usage of RestTemplate to WebClient, following is my existing RestTemplate code,
val restTemplate: RestTemplate
@Throws(KeyStoreException::class, NoSuchAlgorithmException::class, KeyManag...
Vignesh
Votes: 0
Answers: 0
Handling errors from Spring WebClient in another method
In a Spring Boot application, I'm using WebClient to invoke a POST request to a remote application. The method currently looks like this:
// Class A
public void sendNotification(String notification) {...
Robert Strauch
Votes: 0
Answers: 2
Achieve external api calls using Spring WebClient and .p12 cert
I have .p12 certificate inside my project placed into recources directory. All I want to do is to use this file to make external api calls. So I have read some info about how to achieve this:
private ...
Michael Lipilov
Votes: 0
Answers: 1
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