Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] VerifyError Stack size too large

Do you have compile errors elsewhere in your project?  That error
usually indicates weaving did not complete correctly.

Andy.

2008/6/27  <joel@xxxxxxxxxxx>:
> 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
> aspectj-users@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/aspectj-users
>


Back to the top