Search⌘ K
AI Features

The Client Web Application

Explore how to build a reactive client web application that streams real-time data from a backend using Server-Sent Events. Understand how Angular's EventSource and RxJS Observables integrate with Spring WebFlux to handle reactive streams. Compare reactive and classic blocking approaches for client-server communication to evaluate their implementation and runtime differences.

We'll cover the following...

Angular application

To showcase the reactive capabilities, you’ll create a client web application that receives quotes from the book Don Quixote.

Server-Sent Events channel

Instead of just asking for the quotes using a standard blocking call, you’ll ...