In this tutorial, we’ll walk through a simple implementation of the hexagonal architecture. Alistair Cockburn proposed this concept in 2005.

This architecture is also called “Ports and Adapters” and “Object Structural”.

We’ll go through the concepts first and then learn the implementation of this architecture using Java.

Concept

Hexagonal Architecture defines that an application’s business logic should be isolated from the external applications.

Based on this concept, we can divide our application into 3 parts. The business logic will be the inside of an application. The user and server sides of the application would be the outside of an application.

#java #rest-api #design-patterns #hexagonal-architecture #programming #hexagonal architecture — implementation in java

Hexagonal Architecture — Implementation in Java
2.65 GEEK