Pg 55
EJB Persistence spec 3.4.4 Multiple Lifecycle Callback Methods for an Entity Lifecycle Event
"If a lifecycle callback method for the same lifecycle event is also specified on the entity class and/or one or more of its entity superclasses,the callback methods on the entity class and/or entity superclasses are
invoked after the other lifecycle callbackmethods,most general superclass first."
And in 3.4.5 example the output is as:
postPersistPetListenerMethod
postPersistCatListenerMethod
postPersistCatListener2Method
postPersistAnimal
Shouldnt the postPersistAnimal callbacke be called first?