Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-dev] Reg: Using around advice in cflowbelow pointcut with LTW

Hi
  Can anyone let me know if below pointcut is safe in terms of performance,
 
     pointcut InterestedMethods :  cflowbelow(pointcutA ) && execution(* *(..)) && (within(com.abc..*) && !within(thisAspect)

Here pointcutA is execution on a particular top level method call.

And i intend to have a around advice on above InterestedMethods pointcut in a default issingleton aspect.


I see a significant overhead in startup with LTW and i wonder i am doing anything grossly wrong/missing something


Thanks in advance
Regards
Laks

Back to the top