Hibernate - 设置级联仅用于一个会话
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您没有在
一对多
部分设置任何级联,我能想到的唯一方法是先创建并持久化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?