spring-reactive Questions
8
Solved
Environment: Spring Boot 2.3.1, Java 11
I have tried out a few things already (also comparing with the sample-app by spring), but so far I have been unsuccessful in creating a WebClient that requir...
Plagio asked 22/7, 2020 at 7:36
2
The Angular Server Sent Event this.eventSource.onmessage call fails with an error "EventSource's response has a MIME type ("application/json") that is not "text/event-stream". Aborting the connecti...
Repeat asked 1/5, 2020 at 16:38
1
In my handler function I have this method
public Mono<ServerResponse> itemsEx(ServerRequest serverRequest) {
throw new RuntimeException("RuntimeException Occured");
}
Now, I want ...
Montoya asked 6/8, 2020 at 17:48
0
I believe it is a standard to log request and response in order to track down any issues reported by users and also to integrate it with tools like Splunk.
I've found 2 approaches so far, but none ...
Abortive asked 26/10, 2020 at 10:3
0
I've got a project with the following dependencies:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId&...
Malissamalissia asked 20/10, 2020 at 17:43
2
Is it possible to do something like the code below? I have one service that makes an API call and another one which returns a stream of values. I need to modify every value by the value returned by...
Arsenault asked 14/1, 2020 at 22:56
2
Solved
What's the difference between creating a Flux directly by calling Flux.push and use the sink within push's lambada expression vs. using a sink provided by a DirectProcessor?
In a minimal example w...
Umbilicus asked 1/4, 2020 at 6:47
1
I'm trying to add a conditional Retry for WebClient with Kotlin Coroutines + WebFlux.fn + reactor-addons:
suspend fun ClientResponse.asResponse(): ServerResponse =
status(statusCode())
.headers ...
Woodnote asked 24/3, 2020 at 8:18
1
I am using spring cloud gateway as edge server.
This is the flow
If request has a header named 'x-foo' then find the header value, get a string from another server and send that string as respons...
Edmiston asked 11/1, 2020 at 13:34
1
© 2022 - 2024 — McMap. All rights reserved.