Sebastian Götz commented on an issue
Hibernate ORM / Bug HHH-1582
PostInsertListener + "post-commit-insert"
I'm using a custom PostInsertEventListener mapped to the "post-commit-insert" event to process domain objects. However, PostInsertEventListener's onPostInsert(PostInsertEvent) is getting called even when the insert was not successful (ie, due to a unique constraint in the database or some such). It looks to me like Hibernate should either a) not invoke th...