Hibernate 3.2.1.ga 缓存数据

发布于 2025-01-06 11:24:36 字数 221 浏览 1 评论 0原文

我继承了一个由struts2 + hibernate 3.2.1 ga组成的Java EE web应用程序,部署在Jboss 4.3上。

该应用程序似乎没有反映间歇性进行的数据库更改。数据库中的值是正确的,但当我访问应用程序时,这些值有时会显示旧记录。 我对冬眠非常陌生,所以任何想法都将不胜感激。

编辑:我最初说过这些更改不会得到反映,这是不准确的,更改确实会显示,但刷新时它们会恢复到旧值。

I've inherited a Java EE webapp composed of struts2 + hibernate 3.2.1 ga deployed on Jboss 4.3.

The application doesn't seem to reflect database changes made intermittently. The values are correct in the database, but when I access the app, the values sometimes show the old records.
I am extremely green to hibernate, so any thoughts are greatly appreciated.

Edit: I had originally stated that the changes are not ever reflected, this was inaccurate, the changes do show up, but on refresh they revert back to the old values.

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

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

发布评论

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

评论(1

梦途 2025-01-13 11:24:36

也许您的应用程序正在使用二级缓存,并且某些更新是在 Hibernate 后面使用 SQL 更新查询完成的。

这将使二级缓存不知道实体已进行更新,因此应用程序仍会显示从二级缓存获取的过时数据。

Maybe your app is using a second-level cache, and some of the updates are done in the back of Hibernate, using SQL update queries.

This would make the second-level cache unaware that an update has been made to the entity, and the app would thus still show stale data fetched from the second-level cache.

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