Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dinstone/doha
DOHA is the abbreviation for "Domain Oriented Hexagonal Architecture", aimed at standardizing the code layering of microservices.
https://github.com/dinstone/doha
Last synced: about 1 month ago
JSON representation
DOHA is the abbreviation for "Domain Oriented Hexagonal Architecture", aimed at standardizing the code layering of microservices.
- Host: GitHub
- URL: https://github.com/dinstone/doha
- Owner: dinstone
- License: apache-2.0
- Created: 2024-03-28T07:49:53.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-09T03:33:26.000Z (9 months ago)
- Last Synced: 2024-04-09T04:30:05.567Z (9 months ago)
- Language: Java
- Size: 106 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## DOHA (Domain-Oriented Hexagonal Architecture)
DOHA (面向领域的六边形架构)的核心在于应用领域驱动设计(DDD)的思想来设计和组织业务逻辑,并结合六边形架构来实现业务逻辑与外部接口的分离,为构建健壮、可维护、可扩展的软件系统提供了有力的支持。
![六边形架构](https://static001.geekbang.org/infoq/2e/2e3e0acccfa5e96d9bef8e0a7090660d.png)
2005 年,Alistair Cockburn 提出的六边形架构,将应用程序巧妙地划分为内部的业务逻辑层和外部的适配器层。内部聚焦于业务逻辑,而外部具有一个或多个入站适配器(而不是表示层),通过调用业务逻辑来处理来自外部的请求。同样,外部具有一个或多个出站适配器(而不是数据持久层),业务逻辑调用这些出站适配器来访问外部应用程序。
为了解耦内部和外部之间的依赖,业务逻辑层抽象出端口来应对业务逻辑与外部的交互,这些端口实质上代表了一种协议,通常以接口 API 的形式呈现。
六边形架构的一个重要好处是业务逻辑不依赖于表示层逻辑或数据访问层逻辑。它将业务逻辑与适配器中包含的表示层和数据访问层的逻辑分离开来。由于这种分离,单独测试业务逻辑就容易得多了。
六边形架构的另一个好处是它是描述微服务架构中每个服务的架构的好方法。可以通过多个适配器调用业务逻辑,每个适配器实现特定的 API 或用户界面。业务逻辑还可以通过端口调用多个适配器,每个适配器调用不同的外部系统。
六边形架构以业务为核心,解耦外部依赖,分离了业务复杂度和技术复杂度等。然而,六边形架构本身并不涉及内部业务逻辑的设计模式,因此在落地过程中,需要我们自己选择业务逻辑的设计模式。通常,对于简单应用可以选择面向事务脚本模式来组织业务逻辑,而对于复杂应用来说,面向领域建模模式是首选。
## 逻辑架构
![逻辑架构](https://static001.geekbang.org/infoq/04/0444526efb08ed4d6a86bb5805775882.png)
DOHA 将应用分层为 Adapter 层、Port 层和 Domain 层。Adapter 层依赖 Port 层,Port 层和 Domain 层作为业务逻辑层互相依赖。
## 实现架构
![实现架构](https://static001.geekbang.org/infoq/3a/3a2b3c7bee5112637c382dfe2dd08376.png)
DOHA 将工程分为:
- doha-starter:应用启动和部署单元,依赖 doha-business 和 doha-adapter 工程。
- doha-Interface:为第三方应用提供接口 API,如 RPC、Event、MQ 等,不依赖其它工程。
- doha-adapter:出入站适配器实现都在这里,依赖 doha-business 工程。
- doha-business:业务逻辑实现的地方,不依赖其它工程。
## 快速开始
1. 安装DOHA工程模板
``` shell
git clone https://github.com/dinstone/doha.gitcd doha/doha-archetype/
mvn clean install
```2. 应用模板创建工程
``` shell
mvn archetype:generate -DarchetypeGroupId=io.doha.template -DarchetypeArtifactId=doha-template-archetype -DarchetypeVersion=1.0.0 -DgroupId=demo.service -DartifactId=order-service -Dpackage=demo.service.order
```## 模板工程
``` shell
├ doha-template # 微服务模板工程
├── doha-template-adapter # Adapter工程
│ ├── pom.xml
│ └── src
│ ├── main
│ │ ├── java
│ │ │ └── io
│ │ │ └── doha
│ │ │ └── template
│ │ │ └── adapter
│ │ │ ├── cache
│ │ │ ├── dao
│ │ │ │ └── OrderDao.java
│ │ │ ├── mq
│ │ │ └── rpc
│ │ │ ├── CalculateSpi.java
│ │ │ └── OrderRpcSpi.java
│ │ └── resources
│ └── test
│ └── java
├── doha-template-business # Business工程
│ ├── pom.xml
│ └── src
│ ├── main
│ │ ├── java
│ │ │ └── io
│ │ │ └── doha
│ │ │ └── template
│ │ │ ├── domain
│ │ │ │ ├── model
│ │ │ │ │ └── OrderAggregate.java
│ │ │ │ └── service
│ │ │ │ └── OrderRuleService.java
│ │ │ └── port
│ │ │ ├── event
│ │ │ ├── remote
│ │ │ │ └── CalculateRemote.java
│ │ │ ├── repository
│ │ │ │ └── OrderRepository.java
│ │ │ └── service
│ │ │ ├── OrderCommandService.java
│ │ │ └── OrderQueryService.java
│ │ └── resources
│ └── test
│ └── java
├── doha-template-interface # Interface工程
│ ├── pom.xml
│ └── src
│ ├── main
│ │ ├── java
│ │ │ └── io
│ │ │ └── doha
│ │ │ └── template
│ │ │ └── api
│ │ │ ├── mq
│ │ │ └── rpc
│ │ │ ├── OrderRequest.java
│ │ │ ├── OrderResponse.java
│ │ │ └── OrderRpcApi.java
│ │ └── resources
│ └── test
│ └── java
├── doha-template-starter # Starter工程
│ ├── pom.xml
│ └── src
│ ├── main
│ │ ├── java
│ │ │ └── io
│ │ │ └── doha
│ │ │ └── template
│ │ │ └── DohaTemplateApplication.java
│ │ └── resources
│ │ ├── application.properties
│ │ └── log4j2.xml
│ └── test
│ └── java
├── pom.xml
```