gpt4 book ai didi

c# - 通过示例了解六角形端口和适配器的概念

转载 作者:行者123 更新时间:2023-12-02 00:28:47 33 4
gpt4 key购买 nike

在谈论六边形架构时,我试图理解端口和适配器的含义。今晚我已经阅读了很多解释,但是我还没有找到代码示例。因此,我将设计一个。我将端口理解为接口(interface)。例如:

public interface IPerson
{
string GetName();
}

适配器是实现接口(interface)的类:

public class Person : IPerson
{
//Implementation of GetName here
}

我了解四组适配器模式的概念。但是,我不明白这如何适合 DDD。

在 DDD 的上下文中看到一个简单的代码示例确实对我有帮助。

最佳答案

an Adapter to be a class that implements an interface

并不总是。对于驱动端来说是这样,但对于驱动端来说,适配器是一个使用接口(interface)(调用其方法)的软件组件。

我写了一篇关于端口和适配器模式(六边形架构)的概​​念性文章:

https://softwarecampament.wordpress.com/portsadapters

在那里你可以阅读它。

I have read plenty of explanations tonight, however I have not found a code example.

我刚刚发明的一些代码,向您解释什么是端口和什么是实际的适配器:

在在线商店中,驱动程序端口可以是:

    public interface ForManagingShoppingCart {
public void addProductToShoppingCart ( String productId );
// ... more methods ...
}

驱动程序适配器可以是一个 Controller ,它从 UI 接收用户请求并调用驱动程序端口的方法:

    public class ShoppingCartController {

private final ForManagingShoppingCart forManagingShoppingCart;

// Injects port in the constructor
public ShoppingCartController ( ForManagingShoppingCart forManagingShoppingCart ) {
this.forManagingShoppingCart = forManagingShoppingCart;
}

// Method that executes when user selects a product in the view and clicks the "add product" button
public void addProductOnClick ( String productId ) {
this.forManagingShoppingCart.addProductToShoppingCart ( productId );
}

}

如果应用程序在您下订单时向您发送电子邮件,则驱动端口可能是:

    public interface ForNotifyingClients {

public void sendPurchaseOrderConfirmation ( String recipient );

}

端口与技术无关,它不知道消息是否通过电子邮件发送。驱动适配器使用电子邮件系统实现端口。

I understand the concept of the Gang of four Adapter pattern.

适配器模式适合,因为您正在将端口接口(interface)方法转换为电子邮件系统接口(interface)方法。

    public class EmailNotificationAdapter implements ForNotifyingClients {

private final EmailSystem emailSystem;

// Inject the email system interface you want to use in the adapter constructor
public EmailNotificationAdapter ( EmailSystem emailSystem ) {
this.emailSystem = emailSystem;
}

// Implements the method using the email system to send an email
@Override
public void sendPurchaseOrderConfirmation ( String recipient ) {
// ...code that sends an email to the recipient using this.emailSystem
}

}

I do not understand how this fits into DDD... It would really help me to see a simple code example in the context of DDD.

DDD 非常适合六边形架构:

  • 应用层和领域模型将在六边形内。
  • 应用程序服务 API 将是六边形的驱动程序端口。
  • 表示层 (UI) 将是驱动程序适配器。
  • 基础结构层将包含驱动适配器。
  • 当应用层或领域模型需要处理技术时,它们定义了一个驱动端口,基础架构中的驱动适配器将实现该端口。

关于c# - 通过示例了解六角形端口和适配器的概念,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52767649/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com