Closed Theov closed 7 years ago
Very recent change (today) so certainly a stale snapshot issue one way or another. You did try mvn -U
? If you open Mono
it should have flatMap
, if not check when your local snapshots are from and compare to the latest.
Hello,
I try with mvn -U
.
I have 2 flatMap implementation in the Mono.class.
But errors still there.
Sorry should have been more specific. There was a flatMap
before but it was returning Flux
and now it returns Mono
. Also you should be seeing flatMapMany
.
I still have the old public final <R> Flux<R> flatMap
implementation and no method flatMapMany
.
I probably miss something with my dependencies management.
Thanks for your reply.
use flatMapMany instead of flatMap
Hello, I'm trying to play with reactor, on a very simple piece of code but I have an issues with it. I generate a spring boot 2.0.0 application on https://start.spring.io/ with the reactive-web dependency
Here's my source code:
Main class and endpoints
Event model
pom.xml
while i'm requesting both of my endpoints i get the following error
I try to flush my maven local repository then to update it but error still there. I don't find any similar issues on github or google.
Am I missing something ?