I want to intercept a method from an uncropped object.
I have an instance of a class MyClass myClassInstance=new MyClass()and I want to intercept the method call myClassInstance.
I know that everything works well with proxies, but I need an aspect on non-proxies.
Is it possible?
Thank.
source
share