About Lifecycle
JPA Lifecycle Events
Explains how to use JPA lifecycle events (client side triggers) with callback methods and listener classes.... are user defined methods that are attached to entity lifecycle events and are invoked automatically by JPA when these events occur. ... Is used to specify callback methods for the corresponding lifecycle event. See JavaDoc Reference Page... void onPrePersist ...
Working with JPA Entity Objects
Explains the entity object lifecycle and the persistence context. Entity objects are in-memory instances of entity classes (persistable user defined classes), which can represent physical objects in the database. Managing an ObjectDB Object Database using JPA requires using entity objects for many oper ...
Advanced JPA Topics
Describes advanced JPA topics - detached entity objects, lock management and entity lifecycle events.... Detached Entity Objects Locking in JPA JPA Lifecycle Events Shared (L2) Entity Cache JPA Metamodel API ...
javax.persistence.PostLoad
Is used to specify callback methods for the corresponding lifecycle event.(Annotation of JPA)
javax.persistence.PreUpdate
Is used to specify callback methods for the corresponding lifecycle event.(Annotation of JPA)
javax.persistence.PreRemove
Is used to specify callback methods for the corresponding lifecycle event.(Annotation of JPA)
javax.persistence.PostRemove
Is used to specify callback methods for the corresponding lifecycle event.(Annotation of JPA)
javax.persistence.PostUpdate
Is used to specify callback methods for the corresponding lifecycle event.(Annotation of JPA)
javax.persistence.PrePersist
Is used to specify callback methods for the corresponding lifecycle event.(Annotation of JPA)
javax.persistence.PostPersist
Is used to specify callback methods for the corresponding lifecycle event.(Annotation of JPA)