如何在休眠中进行级联保存
我有对象 A 和 B。
对象 A 就像
class A{
Set<B>
}
现在,当我保存 AI 时,希望 A 的 Set
中的所有对象都应自动保存在 DB 中。我该怎么做呢?
I have objects A and B.
Object A is like
class A{
Set<B>
}
Now when I save A I want that all objects in Set<B>
of A should be automatically saved in DB. How can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您通过 EntityManager 工作并使用纯 JPA 注释,Ransom 的问题将会起作用。但如果你直接使用Hibernate,那么你需要使用它自己的注解来进行级联。
The question from Ransom will work if you are working through EntityManager and using pure JPA annotations. But if you are using Hibernate directly, then you need to use its own annotation for cascading.