即使更新后也从数据库获取旧值?

发布于 2024-12-22 00:17:54 字数 128 浏览 1 评论 0原文

我使用 MySQL 作为数据库,并使用 Toplink 作为持久层。

有一个专栏,我过去经常更新。但我总是得到服务器启动实例中的值。

但我重新启动服务器,然后它才给我更新的值。

可能是什么问题?

I am using MySQL as DB, and Toplink essential as persistence layer.

There is a column, that I used to update regularly. But am always getting the value the value that was there at instance of START of the server.

But I restart the server, then only, its giving me the updated value.

What could be the problem?

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

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

发布评论

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

评论(1

若无相欠,怎会相见 2024-12-29 00:17:54

我通过更新 Persistence.xml 解决了这个问题,它允许禁用由 toplink 完成的任何类型的缓存。

<properties>
    <property name="toplink.cache.shared.default" value="false"/>
</properties>

引用的链接 http://docs.oracle.com/cd/B31017_01/web.1013/b28221/cfgdepds005.htm#TopLinkCaching

I was able to fix the problem by updating Persistence.xml, which allowed to disable any kind of Caching done by toplink.

<properties>
    <property name="toplink.cache.shared.default" value="false"/>
</properties>

Refered Link http://docs.oracle.com/cd/B31017_01/web.1013/b28221/cfgdepds005.htm#TopLinkCaching

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