Request processing failed; nested exception is org.springframework.dao.DuplicateKeyException:

Request processing failed; nested exception is org.springframework.dao.DuplicateKeyException: 
### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '[email protected]' for key 'email'

Request processing failed; nested exception is org.springframework.dao.DuplicateKeyException:_第1张图片

报错原因:
在数据库中插入一条记录时,尝试将已存在的唯一键值(通常是主键或唯一索引)重复插入,从而导致数据库操作失败的异常。
说明指定字段在数据库中已经存在,如图上所示“[email protected]”已在数据库admin表中email列中存在,email列已设置唯一索引,无法重复插入,此时应更换其他字符串(其他邮箱)进行插入。

你可能感兴趣的:(数据库,java,spring,intellij-idea)