PostInsertListener + "post-commit-insert"

Description

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 the event listener if the insert failed or b) provide state (perhaps in the form of a boolean indicating success/failure). Personally I'd rather the method not be called on failure, but there may be use cases out there for the second option.

As an example, it looks like Hibernate's own LuceneEventListener will add a domain object to the index in onPostInsert(PostInsertEvent) even if the insert failed.

Note that this problem also seems to exist in EntityDeleteAction and EntityUpdateAction (which would mean that Hibernate's LuceneEventListener removes domain objects from the Lucene index even if the delete fails!).

Activity

Show:

Shawn ClowaterMarch 17, 2014 at 9:00 PM

Glad to be of assistance. I'm hoping this will allow me to use a vanilla jar when I upgrade next and not have to maintain local patches.

Steve EbersoleMarch 17, 2014 at 8:48 PM

Thanks again for the work on this Shawn! I got this applied to master and 4.3. We'll need to plan out exactly when to drop the reuse of the non-post-commit listeners.

Steve EbersoleMarch 17, 2014 at 7:04 PM

et al, I am applying one additional minor change here to log a "deprecation warning" when post-commit listeners are registered that use the non-post-commit variant contracts (aka, when we encounter a POST_COMMIT_DELETE listener registration that does not implement the new PostCommitDeleteEventListener contract).

Steve EbersoleMarch 17, 2014 at 6:35 PM

Working on getting this applied. Assigned back to you since you did the work. Nothing else to do atm

Shawn ClowaterMarch 12, 2014 at 8:24 PM

No rush, let me know if you need anything more from my side.

Fixed

Details

Assignee

Reporter

Original estimate

Time tracking

No time logged3h remaining

Fix versions

Priority

Created March 19, 2006 at 11:34 PM
Updated May 5, 2022 at 10:47 AM
Resolved May 5, 2022 at 10:47 AM

Flag notifications