Add readme and class diagram

This commit is contained in:
Ilkka Seppälä
2016-04-10 21:22:40 +03:00
parent 9b3aa785ed
commit ccc1ec921a
8 changed files with 364 additions and 10 deletions

29
hexagonal/README.md Normal file
View File

@ -0,0 +1,29 @@
---
layout: pattern
title: Hexagonal Architecture
folder: hexagonal
permalink: /patterns/hexagonal/
categories: Architectural
tags:
- Java
- Difficulty-Expert
---
## 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.
![Hexagonal Architecture class diagram](./etc/hexagonal.png)
## Applicability
Use Hexagonal Architecture pattern when
* it is important that the application is fully testable
* you use Domain Driven Design methodology and/or Microservices architectural style
## Real world examples
* [Apache Isis](https://isis.apache.org/)
## Credits
* [Alistair Cockburn - Hexagonal Architecture](http://alistair.cockburn.us/Hexagonal+architecture)