即使更新后也从数据库获取旧值?
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过更新 Persistence.xml 解决了这个问题,它允许禁用由 toplink 完成的任何类型的缓存。
引用的链接 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.Refered Link http://docs.oracle.com/cd/B31017_01/web.1013/b28221/cfgdepds005.htm#TopLinkCaching