I have a MovieRepository which extended ReactiveMongoRepository. I want to save a single POJO in a reactive way. But ReactiveMongoRepository doesn\'t provide save method for
You could do something like this
Mono<Movie> movieMonoSaved = movieMono.flatMap(movieRepository::save); return ServerResponse.status(HttpStatus.CREATED).body(movieMonoSaved, Movie.class);