发布网友 发布时间:2022-04-23 07:39
共5个回答
热心网友 时间:2022-04-10 11:59
org.springframework..DuplicateKeyException: a different object with the same identifier value was already associated with the session: [com.sinosoft.claim.schema.model.PrpLlossInfo#REG135522690070]; nested exception is org.hibernate.NonUniqueObjectException: a different object with 这个问题的话原因是在调用持久层类的进行保存域更新的时候,主键或唯一性约束冲突了。
热心网友 时间:2022-04-10 13:17
看看这个类的文档就明白了,是说主键或唯一键约束失败时会抛出的异常:
Exception thrown when an attempt to insert or update data results in violation of an primary key or unique constraint. Note that this is not necessarily a purely relational concept; unique primary keys are required by most database types.
热心网友 时间:2022-04-10 14:52
是由于主键重复插入,导致的异常。
热心网友 时间:2022-04-10 16:43
直觉告诉我,这是 主键重复的错误,你看下是不是 插入数据库的记录 主键重复了
热心网友 时间:2022-04-10 18:51
字面意思是主键重复