最近在学习javaweb开发update更新接口的过程中遇到了java.sql.SQLIntegrityConstraintViolationException:
问题如下图
Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '开发部' for key 'dept.name'
; Duplicate entry '开发部' for key 'dept.name'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '开发部' for key 'dept.name'] with root cause
我使用apipost测试接口,报错如下
后面经过查询后明白了是使用更新sql语句时,传入的更新参数违反了数据库的唯一约束条件。插入数据时,具有唯一约束条件的列值重复了。所以当我把传入的参数修改后再使用apipost就能正常使用了
以上只为学习过程中的记录
来源地址:https://blog.csdn.net/weixin_57997644/article/details/131749316