Combining Publishers in Project Reactor 1. Overview In this article, we’ll take a look at various ways of combining Publishers in Project Reactor. 2. Maven Dependencies Let’s set up our example with the Project Reactor dependencies: <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> <version>3.1.4.RELEASE</version> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <version>3.1.4.RELEASE</version> <scope>test</scope> </dependency> 3. Combining Publishers… Continue Reading reactor-combine-streams

Spring Boot Reactor Netty Configuration 1. Overview In this tutorial, we’re going to look at different configuration options for a Reactor Netty server in a Spring Boot application. In the end, we’ll have an application showcasing different configuration approaches. 2. What is Reactor Netty? Before we start, let’s look at… Continue Reading spring-boot-reactor-netty

Programmatically Creating Sequences with Project Reactor 1. Overview In this tutorial, we’ll use Project Reactor basics to learn a few techniques for creating Fluxes. 2. Maven Dependencies Let’s get started with a couple of dependencies. We’ll need reactor-core and reactor-test: <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> <version>3.2.6.RELEASE</version> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <version>3.2.6.RELEASE</version> <scope>test</scope> </dependency> 3.… Continue Reading flux-sequences-reactor