Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Ausnahme beim Abfangen doppelter Einträge

Ich verwende Spring, also lösen wir es durch org.springframework.dao.DataIntegrityViolationException

try {
    ao_history_repository.save(new AoHistory(..));
} catch (DataIntegrityViolationException e) {
    System.out.println("history already exist");
}

Aber als @KevinGuancheDarias erwähne es: