java - How to add listener for database changes in Hibernate? -
how can add listener row changes insertion, updation, deletion in hibernate.
you can use jpa listeners @postupdate
, @postpersist
, @postremove
(these portable across orm frameworks) , can here jpa spec.
the postpersist , postremove callback methods invoked entity after entity has been made persistent or removed. these callbacks invoked on entities these operations cascaded.
Comments
Post a Comment