Hi Can someone help me to avoid infinite recursion in the aspect. I tried to add "&& !within(Context) && !withincode(Simple.new()) && !adviceexecution()" to the pointcut, it it did not help.
public class Simple { public void foo1(){ } } public aspect Context { before (Simple s) : this(s) { System.out.println("p4"); s.foo1(); } } Thanks Denes _______________________________________________ aspectj-users mailing list aspectj-users@eclipse.org https://dev.eclipse.org/mailman/listinfo/aspectj-users