Testing Netty with EmbeddedChannel 1. Introduction In this article, we’ll see how to use EmbeddedChannel to test the functionality of our inbound and outbound channel handlers. Netty is a very versatile framework for writing high-performance asynchronous applications. Unit testing such applications can be tricky without the right tools. Thankfully the framework provides… Continue Reading testing-netty-embedded-channel

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

Exceptions in Netty 1. Overview In this quick article, we’ll be looking at exception handling in Netty. Simply put, Netty is a framework for building high-performance asynchronous and event-driven network applications. I/O operations are handled inside its life-cycle using callback methods. More details about the framework and how to get… Continue Reading netty-exception-handling