Java JPA - 同步数据库和实体

发布于 2024-12-23 03:59:10 字数 122 浏览 2 评论 0原文

我在企业应用程序中使用 JPA,当我将行值更改到数据库表中时,相关实体(通过 find(-) 获取它)不会更新为新值。

我认为实体和数据库或简单缓存之间存在同步问题,那么,我该如何解决呢?

I'm using JPA for my Enterprise Application, and when I change values of row into my database table the related entity (get it by a find(-)) isn't updated with new value.

I think that there is a problem of sync between entity and database or a simple cache, so, how can I solve it?

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

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

发布评论

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

评论(1

惜醉颜 2024-12-30 03:59:10

如果您不使用 JPA 编辑数据库行,则应调用 EntityManager#refresh(-) 使用 find(-) 获取的实体作为参数或调用 EntityManager#clear(-),然后再次调用 find(-)

If you edit the database row not using the JPA you should invoke EntityManager#refresh(-) using the entity fetched by find(-) as a parameter or invoke EntityManager#clear(-) and then invoke the find(-) again.

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