如何在休眠中进行级联保存

发布于 2024-11-25 00:40:06 字数 171 浏览 1 评论 0原文

我有对象 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 技术交流群。

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

发布评论

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

评论(2

戏蝶舞 2024-12-02 00:40:06
// Use the cascade option in your annotation
@OneToMany(cascade = {CascadeType.ALL}, orphanRemoval = true)
public List<FieldEntity> getB() {
    return fields;
}
// Use the cascade option in your annotation
@OneToMany(cascade = {CascadeType.ALL}, orphanRemoval = true)
public List<FieldEntity> getB() {
    return fields;
}
苍风燃霜 2024-12-02 00:40:06

如果您通过 EntityManager 工作并使用纯 JPA 注释,Ransom 的问题将会起作用。但如果你直接使用Hibernate,那么你需要使用它自己的注解来进行级联。

import org.hibernate.annotations.Cascade;
import org.hibernate.annotations.CascadeType;

...

@OneToMany
@Cascade({CascadeType.SAVE_UPDATE, CascadeType.DELETE})
public List<FieldEntity> getB() {
    return fields;
}

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.

import org.hibernate.annotations.Cascade;
import org.hibernate.annotations.CascadeType;

...

@OneToMany
@Cascade({CascadeType.SAVE_UPDATE, CascadeType.DELETE})
public List<FieldEntity> getB() {
    return fields;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文