vote up 0 vote down star

I have a DB running on Oracle. I use Hibernate for data access. I want to be notified whenever an object is saved in the DB, so that I can do some custom work. I want an "event listener" if you could call it that. Is there a way to detect such task ?

flag

49% accept rate

1 Answer

vote up 1 vote down check

On Hibernate level, this is done using interceptors

On Oracle level, it's called trigger:

create or replace trigger <triggername>
before/after insert or update or delete
on <tablename> 
for each row/for each statement
...
link|flag
is it possible instead to use interceptors in Hibernate to intercept a persistent object before it is saved, updated or deleted ? – Attilah Nov 4 at 17:05
sorry, i made a mistake . is it possible instead to use interceptors in Hibernate to intercept a persistent object <b>AFTER</b> it is saved, updated or deleted ? – Attilah Nov 4 at 17:07
Have you looked into the Interceptor example? See the afterTransactionCompletion() method, which is called AFTER the object is saved/updated/deleted. – mhaller Nov 5 at 14:11
hi mhaller, thanks for telling me about Hibernate interceptors but I can't make it work even though I followed the reference step by step : stackoverflow.com/questions/1701793/… – Attilah Nov 9 at 20:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.