DDD 中的共享功能

发布于 2024-12-11 23:59:01 字数 331 浏览 0 评论 0原文

我正在考虑向 DDD 项目添加功能,但我不确定适合它的最佳方法。

所需的功能是标记和用户组操作。

由于许多东西都是可标记的(用户、日记、文档等),因此在每个 AR 中重新创建该功能似乎是反 DRY 的。拥有一个维护中央标签表的标签存储库,然后为所需的不同标签类型(即将标签与 userId、journalId 等相关联)或什至单个多对多表提供各种多对多表是否明智?许多记录关系类型的表。如果是这样,是否必须修改域对象才能保存标签的链接?

群组功能类似。需要允许用户创建用户组,然后将组分配给非公共实体(期刊、文档等)以授予他们查看访问权限。

将这个新功能添加到项目中的最佳方法是什么?

I'm looking at adding functionality to a DDD project but I'm unsure of the best way to fit it in.

The needed functionality is tagging and user groups manipulation.

As many things will be taggable (users, journals, documents etc) it seems anti-DRY to recreate that functionality in each AR. Would it be sensible to have a Tag Repository which maintains a central tag table, then have various many-to-many tables for the different tagging types needed (i.e. associating tags to userId, journalId etc) or perhaps even a single many-to-many table which records the relationship type. If so, would the domain object have to be modified to hold the link to the tags?

The group functionality is similar. There is a need to allow users to create user groups, and then assign groups to non-public entities (journals, documents etc) to give them view access.

What would be the best way to add this new functionality to the project?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

原来分手还会想你 2024-12-18 23:59:01

为标记和组功能设计单独的有界上下文。

Design separate bounded contexts for tagging and the group functionality.

梅窗月明清似水 2024-12-18 23:59:01

DRY 原则被表述为“每条知识都必须在系统内有一个单一的、明确的、权威的表示”。

通过分离,您可以促进 DRY 知识的明确和权威的表达。

The DRY principle is stated as "Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.".

By separating, you promote the unambiguous and authoritative representations of the knowledge DRY is all about.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文