Hibernate - 设置级联仅用于一个会话

发布于 2024-10-18 02:50:36 字数 390 浏览 2 评论 0原文

我在 Hibernate 中有这样的关系:

    n      1
A   ------->   B

从 A 到 B 的 @OneToMany 中的级联类型不是 CascadeType.PERSIST,并且不能这样做。从 B 到 A 的 @ManyToOne 也没有 CascadeType.PERSIST。

现在我遇到的情况是,我有一个新的未持久化 A 引用了一个新的未持久化 B,而新的未持久化 B 引用了未持久化 A。

持久化 A 会导致例外,当然,A 引用“空或瞬态实例”B。预先保留 B 会导致相同的错误,因为 A 没有被保留。

我该如何解决这个问题?我可以指定一次性级联持久吗?

I have this relation in Hibernate:

    n      1
A   ------->   B

The cascade types in the @OneToMany from A to B is not CascadeType.PERSIST, and cannot be made so. The @ManyToOne from B to A doesn't have CascadeType.PERSIST either.

Now I have the case where I have a new unpersisted A referring a new unpersisted B which refers to the unpersisted A.

Persisting A leads to the exception, that A referes to the "null or transient instance" B, of course. Persisting B beforehand leads to the same error, because A is not persisted.

How do I solve this? Can I specify a one-time-Cascade-persist?

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

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

发布评论

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

评论(1

一江春梦 2024-10-25 02:50:36

如果您没有在一对多部分设置任何级联,我能想到的唯一方法是先创建并持久化A..然后您可以创建并添加B进入持久化的 A 中。

您不想在此双向关系中设置级联的任何特殊原因吗?

If you don't have any cascading set up on the one-to-many part, the only way I can think of is to create and persist A first.. and then you can create and add Bs into the persisted A.

Any particular reason why you do not want to set up the cascade in this bidirectional relationship?

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