主键冲突异常 DuplicateKeyException


 

org.springframework.dao.DuplicateKeyException


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.

Author:
Thomas Risberg

代码片段

import org.springframework.dao.DuplicateKeyException;

try{
    someMapper.insert(someBean);
    //TODO something
}catch(DuplicateKeyException e){
    //TODO something else
}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM