Skip to content

Commit d4b0f3d

Browse files
committed
refactor: update microservice pattern names & fix links
1 parent acb2eae commit d4b0f3d

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

gateway/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Trade-offs:
153153
* [Facade](https://java-design-patterns.com/patterns/facade/): Similar to Gateway in abstracting complex subsystems, but Gateway specifically targets external or remote interfaces.
154154
* [Adapter](https://java-design-patterns.com/patterns/adapter/): While both patterns provide a different interface to a subsystem, Gateway focuses more on networked data sources and services.
155155
* [Proxy](https://java-design-patterns.com/patterns/proxy/): Often used together, as both can control and manage access to another object, but Gateway specifically deals with external services.
156-
* [API Gateway](https://java-design-patterns.com/patterns/api-gateway/): Often considered a specialization of the Gateway pattern, it specifically manages API requests and routes them to the appropriate services within a backend system.
156+
* [API Gateway](https://java-design-patterns.com/patterns/microservices-api-gateway/): Often considered a specialization of the Gateway pattern, it specifically manages API requests and routes them to the appropriate services within a backend system.
157157

158158
## Credits
159159

localization/es/gateway/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Utilizar el patrón Gateway
137137

138138
## Usos conocidos
139139

140-
* [API Gateway](https://java-design-patterns.com/patterns/api-gateway/)
140+
* [API Gateway](https://java-design-patterns.com/patterns/microservices-api-gateway/)
141141
* [10 most common use cases of an API Gateway](https://apisix.apache.org/blog/2022/10/27/ten-use-cases-api-gateway/)
142142

143143
## Créditos

microservices-aggregrator/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Aggregator Microservices
2+
title: Microservices Aggregator
33
category: Architectural
44
language: en
55
tag:
@@ -28,11 +28,11 @@ Real-world example
2828
2929
In plain words
3030

31-
> Aggregator Microservice collects pieces of data from various microservices and returns an aggregate for processing.
31+
> Microservices Aggregator collects pieces of data from various microservices and returns an aggregate for processing.
3232
3333
Stack Overflow says
3434

35-
> Aggregator Microservice invokes multiple services to achieve the functionality required by the application.
35+
> Microservices Aggregator invokes multiple services to achieve the functionality required by the application.
3636
3737
**Programmatic Example**
3838

@@ -104,7 +104,7 @@ curl http://localhost:50004/product
104104

105105
## Applicability
106106

107-
The Aggregator Microservices Design Pattern is particularly useful in scenarios where a client requires a composite response that is assembled from data provided by multiple microservices. Common use cases include e-commerce applications where product details, inventory, and reviews might be provided by separate services, or in dashboard applications where aggregated data from various services is displayed in a unified view.
107+
The Microservices Aggregator Design Pattern is particularly useful in scenarios where a client requires a composite response that is assembled from data provided by multiple microservices. Common use cases include e-commerce applications where product details, inventory, and reviews might be provided by separate services, or in dashboard applications where aggregated data from various services is displayed in a unified view.
108108

109109
## Consequences
110110

@@ -122,9 +122,9 @@ Trade-offs:
122122

123123
## Related Patterns
124124

125-
* [API Gateway](https://java-design-patterns.com/patterns/api-gateway/): The Aggregator Microservices pattern is often used in conjunction with an API Gateway, which provides a single entry point for clients to access multiple microservices.
126-
* [Composite](https://java-design-patterns.com/patterns/composite/): The Aggregator Microservices pattern can be seen as a form of the Composite pattern, where the composite is the aggregated response from multiple microservices.
127-
* [Facade](https://java-design-patterns.com/patterns/facade/): The Aggregator Microservices pattern can be seen as a form of the Facade pattern, where the facade is the aggregator service that provides a simplified interface to the client.
125+
* [API Gateway](https://java-design-patterns.com/patterns/microservices-api-gateway/): The Microservices Aggregator pattern is often used in conjunction with an API Gateway, which provides a single entry point for clients to access multiple microservices.
126+
* [Composite](https://java-design-patterns.com/patterns/composite/): The Microservices Aggregator pattern can be seen as a form of the Composite pattern, where the composite is the aggregated response from multiple microservices.
127+
* [Facade](https://java-design-patterns.com/patterns/facade/): The Microservices Aggregator pattern can be seen as a form of the Facade pattern, where the facade is the aggregator service that provides a simplified interface to the client.
128128

129129
## Credits
130130

microservices-api-gateway/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: API Gateway
2+
title: Microservices API Gateway
33
category: Integration
44
language: en
55
tag:
@@ -161,7 +161,7 @@ Trade-offs:
161161

162162
## Related patterns
163163

164-
* [Aggregator Microservice](https://java-design-patterns.com/patterns/aggregator-microservices/) - The API Gateway pattern is often used in conjunction with the Aggregator Microservice pattern to provide a unified interface to a set of microservices.
164+
* [Aggregator Microservice](https://java-design-patterns.com/patterns/microservices-aggregator/) - The API Gateway pattern is often used in conjunction with the Aggregator Microservice pattern to provide a unified interface to a set of microservices.
165165
* [Circuit Breaker](https://java-design-patterns.com/patterns/circuit-breaker/) - API Gateways can use the Circuit Breaker pattern to prevent cascading failures when calling multiple microservices.
166166
* [Proxy](https://java-design-patterns.com/patterns/proxy/) - The API Gateway pattern is a specialized form of the Proxy pattern, where the gateway acts as a single entry point for clients, routing requests to the appropriate microservices and aggregating results.
167167

microservices-log-aggregation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Log Aggregation
2+
title: Microservices Log Aggregation
33
category: Integration
44
language: en
55
tag:

0 commit comments

Comments
 (0)