Posts

Showing posts with the label Liferay microservices

Appeler des API Spring Boot depuis Liferay – Guide d’intĂ©gration pas Ă  pas

Image
 Dans les applications d’entreprise, il est très courant d’intĂ©grer Liferay Portal avec des microservices Spring Boot . Un cas d’usage typique est lorsqu’un portlet ou un service Liferay doit appeler une API REST externe dĂ©veloppĂ©e avec Spring Boot. Dans ce guide, vous allez apprendre : comment appeler des API Spring Boot depuis Liferay les principales approches d’intĂ©gration des exemples de code Ă©tape par Ă©tape les bonnes pratiques pour la production 🔍 Pourquoi intĂ©grer Liferay avec Spring Boot ? Liferay est une plateforme puissante de portail et de gestion de contenu , tandis que Spring Boot est idĂ©al pour crĂ©er des microservices Ă©volutifs . Cas d’usage frĂ©quents : interface Liferay appelant un backend Spring Boot workflows Liferay invoquant des services mĂ©tiers APIs headless consommĂ©es par Liferay intĂ©gration avec des systèmes externes Cette architecture permet de : garder Liferay lĂ©ger isoler la logique mĂ©tier faire Ă©voluer les ser...

Calling Spring Boot APIs from Liferay – Step-by-Step Integration Guide

Image
In enterprise applications, it is very common to integrate Liferay Portal with Spring Boot microservices . A typical use case is when a Liferay portlet or service needs to call an external REST API built using Spring Boot. In this guide, you will learn: how to call Spring Boot APIs from Liferay common integration approaches step-by-step code examples best practices for production 🔍 Why Integrate Liferay with Spring Boot? Liferay is a powerful portal and content platform , while Spring Boot is ideal for building scalable microservices . Common scenarios: Liferay UI calling Spring Boot backend Liferay workflows invoking business services Headless APIs consumed by Liferay External system integration This architecture keeps: Liferay lightweight business logic isolated services independently scalable 🧭 Architecture Overview 📊 Diagram 1: Liferay Calling Spring Boot API 🚀 Approach 1: Calling Spring Boot API from Liferay Java Code Th...