JPA not receiving updated data

心已入冬 提交于 2019-12-02 03:10:34

Reason that you get old value is that your entity is stored in second level cache. And when you request it second time no database call is executed, but value from memory is returned.

You can disable cache by adding <property name="eclipselink.cache.shared.default" value="false"/> to property section of your persistence.xml

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!