Reactor is a foundational library building for reactive fast data applications on the JVM.
I am using StepVerifier to test values: @Test public void testStuff() { Thing thing = new Thing(); Mono<Thing> result = …
java unit-testing reactive-programming project-reactorI've watched Spring Tips: Functional Reactive Endpoints with Spring Framework 5.0 and read a little about spring reactor but I can't …
spring netty reactive-programming spring-webflux project-reactor@GetMapping(path = "/cars", produces = "text/event-stream") public Flux<Car> getCarStream() { System.out.println("application/stream+json"); return this.…
java spring-webflux project-reactorI'm using Spring WebFlux WebClient to retrieve data from an external API, like this: public WeatherWebClient() { this.weatherWebClient = WebClient.create("…
functional-programming jackson reactive-programming spring-webflux project-reactorUsing spring 5, with reactor we have the following need. Mono<TheResponseObject> getItemById(String id){ return webClient.uri('/…
spring project-reactor reactiveIt seems like it the Spring RestTemplate isn't able to stream a response directly to file without buffering it all …
java spring spring-webflux project-reactor spring-webclientI have three questions related to Project Reactor and I will ask them below. Start with the code that I …
java project-reactorI am experimenting with the Spring Reactor 3 components and Spring Integration to create a reactive stream (Flux) from a JMS …
java spring spring-integration reactive-programming project-reactorHow can I convert Flux<MyObject> directly to Mono<List<MyObject>> ? I am looking …
kotlin project-reactor reactive-streamsI would like to use 2 approaches(reactive and standard) in one project. I tried to migrate one REST API endpoint …
java spring-boot reactive-programming spring-webflux project-reactor