带有附加信息的 JPA 一对多连接表

发布于 2024-10-11 05:10:55 字数 173 浏览 2 评论 0原文

我有这些 ER 关系:

人员
ID_PERSON
名称

动物
ID_ANIMAL
NAME

人_动物
ID_PERSON
ID_ANIMAL
DATE_OF_BUY

如何映射关联中的属性 DATE_OF_BUY?

I have these ER relations:

Person
ID_PERSON
NAME

Animal
ID_ANIMAL
NAME

Person_animal
ID_PERSON
ID_ANIMAL
DATE_OF_BUY

How to map the property DATE_OF_BUY in the association?

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

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

发布评论

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

评论(1

浅黛梨妆こ 2024-10-18 05:10:55

最好的方法通常是将连接表映射到关系类。即

人 - 一对多 - 动物所有权 - 多对一 - 动物

请参阅

http://en.wikibooks.org /wiki/Java_Persistence/ManyToMany#Mapping_a_Join_Table_with_Additional_Columns

在 JPA 2.0 中,您还可以使用 MapKey 来存储一些附加数据,但这通常更复杂。

The best way is normally to map the join table to a relationship class. i.e.

Person - OneToMany - AnimalOwnership - ManyToOne - Animal

See,

http://en.wikibooks.org/wiki/Java_Persistence/ManyToMany#Mapping_a_Join_Table_with_Additional_Columns

In JPA 2.0 you can also use a MapKey for some additional data, but this is normally more complex.

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