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)
How to disable @Configuration initialization in WebFluxTest?
I would like to write tests for reactive controller using @WebFluxTest annotation, mocking all dependencies.
@WebFluxTest(controllers = MyController.class)
public class MyControllerTest {
@M...

miro
Votes: 0
Answers: 1
Reactive API consumes external api
I'm building an API that consumes another external service's API and maps the response.
Using WebClient to make an HTTP request.
External API is not non-blocking.
I'm going to block fetchResult instea...

Sarvar Nishonboyev
Votes: 0
Answers: 1
How to just read first N lines of a GET API response instead of loading the entire response?
We have a GET API and the response is a huge list of certificates. How do we read just the 1st certificate if we know the start and end tag of the 1st certificate? instead of loading the entire respon...

Devasish Sahoo
Votes: 0
Answers: 2
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