I just had a very interesting experience with AOP in C#. I have a function with a return type List which is being intercepted and that\'s all well and good. However the interceptor function is a valid
In method interception with AopAlliance is there a way to call a method from the class who\'s method was intercepted?
How I can get Target object in my interceptor? bindInterceptor(subclassesOf(A.class), any(), new MethodInterceptor() {
I would like to log the exceptions that are thrown when serving JSF files in the same way other exceptions are logged in our web application.