docs: update client-side ui composition

This commit is contained in:
Ilkka Seppälä
2025-04-12 18:25:26 +03:00
parent 4b06dc2a2e
commit 5241a4ae20
4 changed files with 70 additions and 54 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
---
title: "Microservices API Gateway Pattern in Java: Simplifying Service Access with a Unified Endpoint"
shortTitle: Microservice API Gateway
shortTitle: Microservices API Gateway
description: "Learn how the API Gateway pattern simplifies client-side development, enhances security, and optimizes communication in microservices architecture. Explore examples, benefits, and best practices."
category: Integration
language: en
@@ -45,6 +45,7 @@ public class ImageClientImpl implements ImageClient {
*/
@Override
public String getImagePath() {
var httpClient = HttpClient.newHttpClient();
var httpGet =
HttpRequest.newBuilder().GET().uri(URI.create("http://localhost:50005/image-path")).build();