I'm trying to exclude a specific method call inside another method from being intercepted:
public Class A {
public void foo1() {...}
public void foo2() {
foo1();
}
}
I only want to exclude the foo1 calls made from foo2, and not the other calls: someAObject.foo1() & someAobject.foo2() should be included.
Does anyone know how to do this using spring aop? Thanks!