JPA 在删除实体后仍能找到它们
我有一个从 A 到 B 的 OneToMany 关系(A 引用列表 B)。
当我使用 entityManager.remove(b)
或 a.getBs().remove(b)
或两者删除 B,并再次加载 A 时:删除的 B 将尽管它已被有效地从数据库中删除,但仍然出现在列表中!我尝试了使用和不使用 Cascade.ALL
的关系,但没有成功。
感谢您的帮助。
I have a OneToMany
relation from A to B (A references a list Bs).
When I delete a B using either entityManager.remove(b)
or a.getBs().remove(b)
or both, and load A again : the deleted B will still appear in the list THOUGH it has been effectively removed from the database! I tried with and without Cascade.ALL
on the relation with no success..
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要同时执行这两项操作(除非您使用删除孤儿)。如果你两者都做,它应该消失。确保将其从正确的托管 a 中删除,而不是从分离的 a 中删除。首先确保 a 实际上包含 b。
您始终可以调用refresh()来确认数据库状态是否正确。
You need to do both (unless you use delete orphans). If you do both it should be gone. Ensure you remove it from the correct managed a, not a detached a. Ensure the a actually contains the b to begin with.
You could always call refresh() to confirm that the database state was correct.