I wanted to check the implementation of some annotation in spring, let us say Transactional. Is there any way to find the defining class where what should happen when an annotation is used, is written?
Based on some experience and reading docs, I know where its implementation is written but I wanted to know any shortcuts or any thought process which can directly take me to that defining class of annotation in the case of Spring AOP mostly.
I am using Intellij Idea with Java.