英文: Have to handle an aggregate Id not being present in an event sourced eventual consistent system ...
如何在干净架构中设置实体之间的关系?
英文: How to set relationship between entites in clean architecture? 问题 示例架构 最近,我开始学习干净架构的实现。现在我在创建实体和...
DDD – 在同一个事务中更改一个聚合并保存另一个聚合可以吗?
英文: DDD - Is it alright to change one aggregate and save another one in the same transaction? 问题 我的聚...
在领域层结构中使用 Int64 而不是 DateTime / TimeSpan 是否合理?
英文: Is it reasonable to use Int64 instead of DateTime / TimeSpan in the Domain-level structures? 问题 ...
在六边形架构中,周期性后台任务应该放在哪里?
英文: Where in Hexagonal Architecture do periodic background tasks fit? 问题 我正在使用golang编写一个程序,该程序基于六边形架...
Golang领域驱动设计实体,包括在结构体中使用JSON属性。
英文: golang domain driven design entities including json attributes in structs 问题 我正在使用DDD来设计我的Go应用程序...
DDD验证完整对象图
英文: DDD validation on full object graph 问题 @Value @Builder public class Parent { @NotNull private St...
可以在Java/Spring应用程序中使用用Scala编写的领域模型吗?
英文: Can we use Domain model written in Scala in a Java/Spring Application? 问题 有没有一种方法可以从一个使用Spring+J...
有一个聚合,其字段与数据库对象不同,这样做是否正确?
英文: Is correct to have an aggregate with fields different than database object? 问题 我正在尝试应用领域驱动设计(DDD...
聚合和聚合根是否实现为单独的类?
英文: Are aggregates and aggregate roots implemented as separate classes? 问题 它们是独立的类 class Aggregate {...
4