Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:2.1
I want to be able to identify all changes made to the database that occur within a transaction. I can get all of the information that I need from the Interceptor with the exception of an identifier for the transaction.
We are cascading = "all" in most persistent objects and have used the interceptor to implement auditing. I need to be able to identify all of the chnages that were made when the user hit the "save" button. As I mentioned before, I can get all of this from the interceptor except for the identifier for the transaction (which would let me group the atomic information).
Any suggestions?