JPA 中的聚合和分解
如何使用 Java Persistence API 实现聚合和分解?最佳实践是什么?
提前致谢, 丹尼尔
How do you implement aggregation and decomposition with Java Persistence API? What are the best practices?
Thanks in advance,
Daniel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了
@OneToMany
和@OneToOne
关系的orphanRemoval
属性:用法:
I've found the
orphanRemoval
attribute for@OneToMany
and@OneToOne
relationships:Usage:
在 JPA 中处理聚合时,有两件事应该非常清楚。
Java 世界中的关系是由领域需求决定的。例如,一个用户可能有很多地址,因此我们保留用户中地址的聚合,而不保留逆关系。对于组合,我们需要处理级联行为。
更详细的处理可以参见此处
There are two things which should be very clear while handling aggregation in JPA.
The relationship in Java world is governed by the domain need. For example a User might have many addresses so we keep the make the aggregation of address in User and not keep the inverse relationship. For composition, we need to handle the cascade behavior.
A more detail treatment can be see here