Search⌘ K
AI Features

Angular Components

Explore how to build Angular components that subscribe to Observables from reactive or blocking Spring WebFlux services. Understand how to update the UI with incoming data using Angular's ChangeDetectorRef and use ngFor in the template for rendering dynamic content.

We'll cover the following...

Quotes component

The quotes component (quotes.component.ts) is the part interacting with the services, both the blocking and the reactive one.

This component uses the reactive or the blocking service, depending on the user’s choice (via buttons on the HTML ...