| Re: [aspectj-users] StackOverflow error |
Andy, Your advice :) worked like a charm!
Showing only relevant changes to code (RunMultipleAspect.java)
*@After("execution(@com.xxxx.util.annotation.RunMultiple * *.*(..)) && !within(RunMultipleAspect) && !cflow(adviceexecution())")*
public void repeat(JoinPoint jp) throws ClassNotFoundException,
IllegalArgumentException, IllegalAccessException,
InvocationTargetException, InstantiationException {
....
....
* // if (++count < rmAnnotation.counter()) {
[..snip..]
Hey :)
Holger