gpt4 book ai didi

java - Hibernate 抛出托管刷新异常

转载 作者:行者123 更新时间:2023-12-02 01:43:01 25 4
gpt4 key购买 nike

我们正在尝试在 Oracle 中保存实体:Oracle Database 11g Enterprise Edition Release 11.2.0.3.0

我们使用Hibernate来实现同样的目的:

我们收到以下明显错误:

o.h.i.ExceptionMapperStandardImpl : HHH000346: Error during managed flush [org.hibernate.exception.ConstraintViolationException: could not execute statement]

详细的相关堆栈跟踪如下:

[ERROR]--- [nio-8080-exec-9] o.h.engine.jdbc.spi.SqlExceptionHelper : ORA-00001: unique constraint (XXX.PK_USER_FAVORITE) violated
[WARN ] --- [nio-8080-exec-9] o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 1, SQLState: 23000
[ERROR] --- [nio-8080-exec-9] o.h.i.ExceptionMapperStandardImpl : HHH000346: Error during managed flush [**org.hibernate.exception.ConstraintViolationException**: could not execute statement]
[ERROR] --- [nio-8080-exec-9] c.mastercard.refarch.aop.ServiceLogging : {"aop_service":"UserFavoritesService", "method":"addCurrentUserFavorite", "type":"failed", "error":"could not execute statement; SQL [n/a]; constraint [XXX.PK_USER_FAVORITE]; nested exception is org.hibernate.exception.ConstraintViolationException: could not execute statement", "args":"(["s029158",{"userFavoriteId":null,"applicationId":"XXX","functionAlphaCode":"SOME vale","title":"Service Report"}])"}

我们使用oracle 序列来生成主键值。我想当 oracle 序列尝试执行时我们遇到了上述问题。 每当我们遇到上述异常时,Hibernate 就无法执行 Oracle 序列,这是这里的主要问题。

我们尝试保存在数据库上的实体还有非空主键约束

当前的 Hibernate 版本是 Hibernate-core 5.2.17和版本(如果 hibernate JPA 是 Hibernate-JPA-2.1-API-1.0.2.Final

)

仍然想知道为什么我们会得到:

托管刷新期间出错 [org.hibernate.exception.ConstraintViolationException:

最佳答案

重要的部分是错误消息,其中显示ORA-00001:违反了唯一约束(XXX.PK_USER_FAVORITE)。显然,您的 USER_FAVORITE 表的唯一约束被违反。

检查序列以查看其下一个值是什么,然后检查 USER_FAVORITE 表中此唯一键列的最大值是多少。如果唯一列的最大值 >= 序列中的下一个值,您就必须进行修复。

关于java - Hibernate 抛出托管刷新异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57477412/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com