JPA 在删除实体后仍能找到它们

发布于 2025-01-01 17:40:33 字数 243 浏览 0 评论 0原文

我有一个从 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 技术交流群。

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

发布评论

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

评论(1

乖乖 2025-01-08 17:40:33

您需要同时执行这两项操作(除非您使用删除孤儿)。如果你两者都做,它应该消失。确保将其从正确的托管 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.

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