Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

bvegaM/hexagonal-architecture

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

1 Commit

Repository files navigation

Hexagonal architecture Example practice

Developed by: Bryam Vega


Project structure:

├── main
│ ├── java
│ │ └── com
│ │ └── blocking
│ │ └── hexagonal
│ │ ├── HexagonalApplication.java
│ │ ├── application
│ │ │ ├── ports
│ │ │ │ ├── input
│ │ │ │ │ └── UserIPort.java
│ │ │ │ └── output
│ │ │ │ └── UserOPort.java
│ │ │ └── service
│ │ │ └── UserService.java
│ │ ├── domain
│ │ │ └── User.java
│ │ └── infrastructure
│ │ ├── adapters
│ │ │ ├── input
│ │ │ │ ├── controller
│ │ │ │ │ └── UserController.java
│ │ │ │ ├── dto
│ │ │ │ │ └── UserDTO.java
│ │ │ │ └── mapper
│ │ │ │ └── UserDTOMapper.java
│ │ │ └── output
│ │ │ ├── UserAdapter.java
│ │ │ ├── entity
│ │ │ │ └── UserEntity.java
│ │ │ ├── mapper
│ │ │ │ └── UserEntityMapper.java
│ │ │ └── repository
│ │ │ └── UserRepository.java
│ │ └── exception
│ │ └── APIExceptionHandler.java
│ └── resources
│ ├── application.properties
│ ├── static
│ └── templates
└── test
 └── java
 └── com
 └── blocking
 └── hexagonal
 └── HexagonalApplicationTests.java

About

A simple example about how works a Hexagonal Architecture

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

Contributors

Languages

AltStyle によって変換されたページ (->オリジナル) /