add crosslink

This commit is contained in:
Daniel Pötzinger
2019-10-19 21:35:30 +02:00
parent 9b38cc638b
commit c3e58998df
2 changed files with 7 additions and 1 deletions

View File

@@ -32,7 +32,7 @@ Flamingo has a clean architecture with clear dependencies in mind and offers a t
* GraphQL support and therefore support to build nice SPA and PWAs on top of it * GraphQL support and therefore support to build nice SPA and PWAs on top of it
* Resilience and Caching for external APIs calls. * Resilience and Caching for external APIs calls.
Flamingo itself does not contain ORM Mapper or libraries - instead it emphasizes "ports and adapters" architecture - so that you have a technology free (domain) model and any possible (and replaceable) persitence behind it. Flamingo itself does not contain ORM Mapper or libraries - instead it emphasizes ["ports and adapters"](/methods-and-patterns/ports-and-adapters.html) architecture - so that you have a technology free (domain) model and any possible (and replaceable) persitence behind it.
That makes Flamingo useful to build microservices and applications - especially to build "frontends" or portals that require interaction with other (micro) services in a distributed architecture. That makes Flamingo useful to build microservices and applications - especially to build "frontends" or portals that require interaction with other (micro) services in a distributed architecture.
When sticking to the architectural recommendation you can build modular applications with replaceable adapters that gives you independed testability. When sticking to the architectural recommendation you can build modular applications with replaceable adapters that gives you independed testability.

View File

@@ -0,0 +1,6 @@
---
title: "Ports and Adapters"
ring: adopt
quadrant: methods-and-patterns
---