含泪韵心弦
2018-09-30 00:40
org.springframework.dao.DuplicateKeyException:
### Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '东苑' for key 'UK_AREA'
### The error may involve com.aochuang.dao.AreaDao.updateArea-Inline
### The error occurred while setting parameters
### SQL: UPDATE tb_area SET area_name=?, last_edit_time = ?
### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '东苑' for key 'UK_AREA'
; ]; Duplicate entry '东苑' for key 'UK_AREA'; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '东苑' for key 'UK_AREA'
添加的字段在数据库中是唯一字段(UNIQUE KEY),添加的数据再数据库中已经存在了,所以会报这个问题。
对呀 你直接在测试那里new Date对象进去就行啦
你直接在Sercvice层那里new一个Date对象来填入这个属性
SpringBoot+MyBatis搭建迷你小程序
91500 学习 · 621 问题
相似问题