Skip to content

MicroFrontends

Miguel Pérez Colom edited this page Jan 11, 2025 · 3 revisions

Sometimes you want to add a component which has been defined in another micro service. This meaning you do not have access to the java class which defines that UI fragment.

For those cases you can use the MicroFrontend component. E.g.:

  MicroFrontend remote = new MicroFrontend(
          "https://article2.mateu.io/booking/booking_bookings",
          Map.of()
  );

You can use that as any other component, so your UI can contain fragments from different micro services.

Clone this wiki locally