Hibernate 在更新唯一键的字段部分时抛出唯一约束冲突异常
以下是用例: 我在 A、B、C 3 列上定义了唯一索引。假设其中的值为A1、B1、C1。 我的java代码正在添加一条新记录,例如A1,B1,C1,但在添加此记录之前,我将先前的值从C1更新为C2。在尝试添加新记录时(更新后),hibernate 抛出唯一约束冲突异常。有什么理由吗?上述所有语句都在同一个事务中执行。我的假设是插入发生在更新之前,因此是异常的原因。
有什么想法/建议吗?
Below is the use case:
I have a unique index defined on 3 columns say A,B,C. Assume the values in them are A1,B1,C1.
My java code is adding a new record say A1,B1,C1 but before this record is added, i update the previous value from C1 to C2. While trying to add the new record (after the update), hibernate is throwing an unique constraint violation exception. Any reason as to why it does? All the above statements are executed within the same transaction. My assumption is the insert happens before the update and hence the reason for the exception.
Any thoughts/suggestions ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更新后尝试使用 session.flush() 。
Try to use session.flush() after the update.
这就是 Hibernate 的设计行为,它会在
save()
时插入值(A1、B1、C1),然后更新它们(C1 到 C2),它不会插入 A1、B1、 C2)。引用以相同的方式插入和更新:建议:延迟保存直接插入(A1,B1,C2)。
That's how Hibernate behaves by design, it will insert the values at
save()
time (A1, B1, C1) and then update them (C1 to C2), it won't insert A1, B1, C2). Quoting the King in Insert and Update in same flush:Suggestion: delay the save to insert (A1, B1, C2) directly.