I am working on a spring boot application. I have tried to enable AspectJ mode for transaction management as follows:
@EnableTransactionManagement(mode = AdviceMode.ASPECTJ)
I am suspecting the aspectJ mode is not working and I would like to know whether or not AspectJ mode is indeed enabled for my application.
Can someone please provide a way to check that (e.g. through enabling a logger or debugging)?