PostRemove not invoked after database record was deleted
--------------------------------------------------------
Key: OPENJPA-1341
URL: https://issues.apache.org/jira/browse/OPENJPA-1341
Project: OpenJPA
Issue Type: Bug
Components: kernel
Affects Versions: 2.0.0
Reporter: Pinaki Poddar
Assignee: Pinaki Poddar
Fix For: 2.0.0-M4
It has been reported that PostRemove is not invoked after database delete but
invoked after flush().
This is in disagreement with JPA 2.0 Spec (Section 3.5.2) which states
"
1. The PostPersist and PostRemove callback methods are invoked for an entity
after the entity has been made persistent or removed.
2. These callbacks will also be invoked on all entities to which these
operations are cascaded.
3. The PostPersist and PostRemove methods will be invoked after the database
insert and delete operations respectively.
These database operations may occur directly after the persist, merge, or
remove operations have been invoked or they
may occur directly after a flush operation has occurred (which may be at
the end of the transaction).
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.