Hibernate+JPA 一对一关系
我有这样的 OneToOne 关系:-
Person Others
----------- -------------
| id (PK) | <----------------->| id(PK)(FK) |
----------- -------------
| name | |.... |
| address | |.... |
| .... | |.... |
这里 person 表的 id 是自动生成的,但其他表的 id 是外键。我如何链接这两个表。
I have a OneToOne relationship like this :-
Person Others
----------- -------------
| id (PK) | <----------------->| id(PK)(FK) |
----------- -------------
| name | |.... |
| address | |.... |
| .... | |.... |
Here person table's id is auto-generated, but Others table's id is a foreign key. How can I link these two tables.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以忘记外键内容并继续正常的一对一映射关系。有关更多详细信息两个表没有主键时如何连接
You can forget about the foreign key stuff and keep coninue in normal one to one mapping relation.For more details how to connect two tables when one has no primary key