I've been using an Interceptor for Hibernate 2 and from the beforeTransactionCompletion callback I was calling code intercepted by the TransactionInterceptor.
Everything worked fine and I could see all the changes from both transactions.
Now I've switched to Hibernate 3 and It seems that is running well, but the changes made by the called code (the nested transaction) are not visible after the first transaction is commited.
I'm using PROPAGATION_REQUIERED transactions.
Any idea?
Thanks


Reply With Quote