mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 14:58:39 +00:00
656b441e29
PR Set 2 of 4
layout, title, folder, permalink, pumlformat, categories, language, tags
| layout | title | folder | permalink | pumlformat | categories | language | tags | |
|---|---|---|---|---|---|---|---|---|
| pattern | Hexagonal Architecture | hexagonal | /patterns/hexagonal/ | svg | Architectural | en |
|
Also known as
- Ports and Adapters
- Clean Architecture
- Onion Architecture
Intent
Allow an application to equally be driven by users, programs, automated test or batch scripts, and to be developed and tested in isolation from its eventual run-time devices and databases.
Class diagram
Applicability
Use Hexagonal Architecture pattern when
- When the application needs to be independent of any frameworks
- When it is important that the application highly maintainable and fully testable
Tutorials
Real world examples
- Apache Isis builds generic UI and REST API directly from the underlying domain objects
