Search⌘ K

Integration in Assurance App

Explore frontend integration methods for microservices within a monolithic backend. Understand how redirects facilitate simple navigation and how links pass essential data with minimal coupling, enabling independent frontend development and flexible UI changes.

Why monolithic backend? #

This application uses a monolithic backend and frontend microservices because the microservices lack logic and they are not self-contained systems.

However, this architecture can still make sense. The frontend, at least, consists of microservices, and so independent development of the microservices is possible.

Also, it is possible to use different technologies in each frontend microservice. With a large number of available UI frameworks and the high ...