Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Yet another newbie question! java.lang.StackOverflowException

I have this recurring problem where I try to implement tracing using the TraceAspect
(found in TraceAspect.aj).

If I turn on the PARAM_FL (line 16, line 35) I get a StackOverflowException. I don't if I
leave it false.

I have tried the following pointcut -- without success.
   23	  public pointcut loggedOperations()
   24	  	: (execution(* *.*(..)) || execution(*.new(..)))
   25	    && !within(TraceAspect) && !cflow(call(String *.toString())) 
   26	    && !cflow(call (* org.springframework.web.util..*.*(..)));

Any ideas?

--Michael

=====



		
__________________________________
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
http://promotions.yahoo.com/new_mail 

Attachment: traceaspect.out
Description: traceaspect.out

Attachment: TraceAspect.aj
Description: TraceAspect.aj


Back to the top