使用 Hibernate 保存点
问题是我在临时基础上使用休眠中的保存或更新...
现在当我最终触发更新时,它将永久地将其存储在数据库中,否则回滚它..
如何使用休眠基础创建保存点是春天。
就像
HibernateTemplate hibernateTemplateObj = getHibernateTemplate();
hibernateTemplateObj.saveOrUpdateAll(userList);
现在我想在保存或更新之前添加连接中的保存点。
任何帮助将不胜感激..
感谢adv。
The issue is i m using save or update in hibernate on temporary base...
now when i finally fire update it will store it in DB permanently otherwise rollback it..
how to make save point using hibernate base is spring.
like
HibernateTemplate hibernateTemplateObj = getHibernateTemplate();
hibernateTemplateObj.saveOrUpdateAll(userList);
now i would like to add savepoint in connection before save or update.
Any help would be appriciate..
Thanks in adv.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用此代码
,其中
hibernateConection
是第三方库liquibase.ext.hibernate.database.HibernateConnection
的对象Use this code
where,
hibernateConection
is object of third party libraryliquibase.ext.hibernate.database.HibernateConnection