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

Popular posts from this blog

sql - can we replace full join with union of left and right join? why not? -

javascript - Parallax scrolling and fixed footer code causing width issues -

iOS: Performance of reloading UIImage(name:...) -