Hi,
is there anything special I need to do to be able to use load-time weaving on classes that don't implement any interface? I was experimenting with it and ran intoAs soon as I had my App class implement AppInterface this error was fixed. From what I understood from the reference manual, standard java Proxy's are used for interfaces, instead of cglib. So is this an issue in cglib or do I have to do something special to weave aspects into a class?Code:java.lang.VerifyError: (class: be/test/App$$EnhancerByCGLIB$$4ce32774, method: getNumber signature: ()I) Inconsistent stack height 2 != 1


Reply With Quote
