Hello Everyone.
My Question is related to the code flow when it comes to the persisting of the records in to table. Let say I have three table T1, T2 and T3 and the data persist in these table subsequently in the same order. A process is running and manage to complete without exception and post the data in table T1. Same goes with the Table T2 also. Now the same process got failed and some exception occurred. At this point we know all T1,T2,T3 are related data....we can not rollback T1 and T2 because it is related to my monetary transaction. How we should go to implement this in Spring.
Do annotation takes care of this logic by its own.....Any other suggestion are most welcome...
Many Thank..!