Server Side Page Fragment Composition Design Pattern for Microservices E...
Server Side Page Fragment Composition Design Pattern for Microservices Explained with Examples In this video we will learn about Server-Side Page Fragment Composition design pattern for microservices. Server Side Composition pattern assembles Fragments on the server side. There are customer-facing applications like B2C e-commerce web applications etc developed via microservices. There are many screens/pages to display data from multiple services. Server-side composition pattern suggest that UI fragments should be composed on the server, which means the client-side receives a fully assembled page, resulting in increased loading speed. Here assembly of fragments are performed by a separate component, located between the web browser and web servers. An example of such middle man component is CDN (content delivery network). Server-Side Page Fragment pattern works closely with Micro Frontends Patterns. Micro frontend is an architectural and organizational style not a technology. In ...