Hibernate Envers 将数据恢复到某个版本
我们使用Hibernate envers来存储数据的历史修订版本,需要将数据恢复到某个修订版本。由于我们使用 Version 列来使用乐观锁定方法,因此当我尝试保存先前版本的数据时,我收到 StaleObjectException
。有没有办法强制 Hibernate 存储以前版本的数据?
We are using Hibernate envers to store historical revisions of the data, there is a requirement to revert data to a certain revision. As we are using the Version column to use the optimistic locking approach, when I try to save data from the previous revision I get a StaleObjectException
. Is there any way to force Hibernate to store data from previous revision?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个很棒的问题。我在 envers 文档中没有找到类似的内容,但我确信这是一个常见问题。作为解决方法,您可以在所需的对象修订上设置属性(例如在构造函数中)
That's an awesome question. I didn't find anything like that in the envers documentation but I'm sure it's a common issue. As a workaround you could set the attributes on the desired object revision (in a constructor for instance)