Getting Started With RSocket: Spring Boot Client
Time: approximately 15 mins.
In the previous article, you saw how Spring Boot simplifies the task of writing RSocket servers. But what about RSocket clients? In this article, you’ll learn how to write your own RSocket client and then use this new client to send request-response messages to your RSocket-server. Let’s get started!
This tutorial uses the Linux shell. For details on how to run a Linux shell on Windows, see this Microsoft tutorial.
Step 1: Create A New Spring Boot Project For Your Client
It’s fun to write your own code, so for your RSocket client let’s start from scratch.
If this is too much hassle for you, or you don’t have the time right now, then you can find the code in the rsocket-client folder of the demo code repository.
…