DDD中Repository接口

前端之家收集整理的这篇文章主要介绍了DDD中Repository接口前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在DDD中必须将Service和Domain,与Repository放在两个不同的层中,若直接这样设计的话,会出现包之间循环应用的现象, 比如Service引用Infrastrator中的Repository,Repository又引用Domain Layer中的Domain。

可用以下解决方法,引入Reposityor的接口IReposityor,Service和Domain引用IReposityor,在通过IOC注入Reposityor到接口IReposityor中

原文链接:https://www.f2er.com/javaschema/287389.html

猜你在找的设计模式相关文章