Reactor is a foundational library building for reactive fast data applications on the JVM.
I want to have centralised logging for requests and responses in my REST API on Spring WebFlux with Kotlin. So …
spring-boot kotlin project-reactor spring-webfluxI'm developing a app with Spring Boot 2.0 and Kotlin using the WebFlux framework. I want to check if a user …
spring kotlin project-reactor reactiveI am in the process of starting a new project (java-based). I need to build it as a modular, distributed …
java spring akka reactor project-reactorI have below code retuning Mono<Foo>: try { return userRepository.findById(id) // step 1 .flatMap(user -> barRepository.…
spring project-reactor reactive-streamsI'm converting small project written in RxJava 1.x to Reactor 3.x. All is good, except that I could not find …
java project-reactorI'm new to project Reactor and reactive programming in general. I'm currently working on a piece of code similar to …
java reactive-programming project-reactor reactorI'm using WebClient and custom BodyExtractorclass for my spring-boot application WebClient webLCient = WebClient.create(); webClient.get() .uri(url, params) .accept(…
java spring project-reactor spring-webflux reactive-streamsI am trying to use Webflux to stream a generated file to another location, however, if the generation of the …
java reactive-programming spring-webflux project-reactorWe're going to start a new Spring 4 application in a few weeks. And we'd like to use some event-driven architecture. …
multithreading spring akka event-driven-design project-reactorHow can I convert from a Flux with 1 element to a Mono? Flux.fromArray(arrayOf(1,2,1,1,1,2)) .distinct() .take(1) How do I …
project-reactor