I have a problem with Spring AOP which doesn't ties an aspect to all the methods it should (in my opinion) (see this question for more about the root problem: Spring AOP ignores some methods of Hessian Service).
How can I debug, what methods and instances get combined with what aspect? Is there something like a verbose flag for spring aop, which gives that information?
There seems not to be too much logging code in the Spring AOP classes, but...
In case Spring AOP decides to use Cglib to create proxy, there's one line which might help you:
A similar one seems to come in handy when JDK proxies are used:
Just try to turn on DEBUG-level logging for these two classes and see what's the output.