Spring - How to get reference to TransactionStatus object in a Transactional method

4.1k Views Asked by At

When using @Transactional in a service layer, is there any option to get a reference to the TransactionStatus instance created by the PlatformTransactionManager?

For instance, in the following code :

@Transactional
public void updateCustomer(...) {
    // do some business stuff
    // can we get here a reference to the TransactionStatus instance ?
}
1

There are 1 best solutions below

1
On BEST ANSWER
TransactionStatus status = TransactionAspectSupport.currentTransactionStatus();

The currentTransactionStatus method returns the transaction status of the current method invocation.

If you are interested in the result of a transaction, you could consider the TransactionSynchronizationAdapter which provides a convenient afterCompletion(int status) callback:

class AfterCompletionTransactionHandler
        extends TransactionSynchronizationAdapter {

    public @Override void afterCompletion(int status) { ... }

}