Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [aspectj-users] VerifyError on Solaris

Greve, Thomas wrote:
> On Solaris 8 (SUN/BEA VM 1.4.1_05), after deploying a woven ear, my aspect
> code cannot be loaded due to a VerifyError:
> 
>   java.lang.VerifyError: (class: ..., method: aspectOf signature: () ...;)
> Stack size too large
> 
> This problem does not occur on Windows.

This bug is probably caused by a classpath issue where you have an unwoven
aspect being found on the classpath by your server.  See this bug report
that I think is related:
  https://bugs.eclipse.org/bugs/show_bug.cgi?id=40869

That bug can only cause a verify error if you have code compiled with
-XnoWeave.  Have you used this as part of your build process at some point?

-Jim




Back to the top