Do you have compile errors elsewhere in your project? That error usually indicates weaving did not complete correctly.
Andy. 2008/6/27 <[EMAIL PROTECTED]>: > During runtime, I get: > > Exception in thread "Thread-8" java.lang.VerifyError: (class: > my/AspectClass, method: <clinit> signature: ()V) Stack size too large > at java.lang.Class.getDeclaredMethods0(Native Method) > at java.lang.Class.privateGetDeclaredMethods(Class.java:2427) > at java.lang.Class.getDeclaredMethod(Class.java:1935) > at > org.aspectj.lang.Aspects.getSingletonOrThreadAspectOf(Aspects.java:140) > at org.aspectj.lang.Aspects.aspectOf(Aspects.java:47) > > > I have only one pointcut defined: > > pointcut fieldMutator(MyClass o, Object v): set(!static !final > !transient * mypackage.MyClass.*) && this(o) && args(v); > > > And one around advice based on that pointcut. > _______________________________________________ > aspectj-users mailing list > [email protected] > https://dev.eclipse.org/mailman/listinfo/aspectj-users > _______________________________________________ aspectj-users mailing list [email protected] https://dev.eclipse.org/mailman/listinfo/aspectj-users
