I want to know if it is possible to debug / see the flow of control what code gets executed for annotations. What I am trying to understand is like below:
(Not specific to Spring Framework annotation, can be any other annotation)
Consider the code snippet:
@Autowired(required=true)
private JPADBAccess jPADBAccess;
Now I want to understand what actions/code gets executed against the annotation? Is it possible to see.
I have difficulty in understand that how simply annotating does the work; there should be some code which would actually do some work; annotations are like just interface (@interface..), but where is the actual code which does the work?