hibernate外键映射多对一
我已经研究了很长一段时间,但仍然无法弄清楚我的代码有什么问题。 每个服务有多个配置文件,但每个配置文件只有一个服务。
Service
{
Long service_id; // primary key
... getter/setter
}
Profile
{
Long profile_id; // primary key
Long service_id; // foreign key
... getter and setter
}
在 Profile.hbm.xml 中。我添加
< many-to-one name="service_id" class="com.mot.diva.dto.Service" column="SERVICE_ID" cascade="save-update">
< /many-to-one>
这是映射它的正确方法吗?
I have been working on it for quite a while, but still can't figure out what's wrong with my code.
Each Service has multiple profiles, but each profile only has one Service.
Service
{
Long service_id; // primary key
... getter/setter
}
Profile
{
Long profile_id; // primary key
Long service_id; // foreign key
... getter and setter
}
in Profile.hbm.xml. I add
< many-to-one name="service_id" class="com.mot.diva.dto.Service" column="SERVICE_ID" cascade="save-update">
< /many-to-one>
Is it the correct way to map it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
然后相应地设计您的对象模型。使用 ORM 工具时,您需要考虑对象(实体)和实体之间的关系,而不是 ID。 ORM 将处理 PK、FK、连接等。因此您的代码应该如下所示:
Profile.hbm.xml
映射文件:在
Service.hbm.xml 中
(因为您的关联似乎是双向的):Then design your object model accordingly. When using an ORM tool, you need to think object (entities) and relations between entities, not ids. The ORM will take care of PK, FK, joins, etc. So your code should be something like this:
And the
Profile.hbm.xml
mapping file:And in
Service.hbm.xml
(because your association seems to be bi-directional):