- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在谈论六边形架构时,我试图理解端口和适配器的含义。今晚我已经阅读了很多解释,但是我还没有找到代码示例。因此,我将设计一个。我将端口理解为接口(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 非常适合六边形架构:
关于c# - 通过示例了解六角形端口和适配器的概念,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52767649/
当我掌握了总体思路时,我很难看到管理配置环境和管理数据库连接的最佳实践。 含义: 如果我有存储库(例如,对于PostgreSQL),是否应该将NewRepository函数传递给数据库配置?会不会以某
我想创建一个自定义的 android 容器。我可以轻松添加和删除对象的地方。容器应将对象放置在六边形内。对象放置的顺序非常重要,如下图所示。此适配器中的对象是可点击的 ImageView(圆形)。甚至
我是一名优秀的程序员,十分优秀!