users@jersey.java.net

Re: Allocate Exception

From: Martin Probst <mail_at_martin-probst.com>
Date: Wed, 23 Apr 2008 15:49:39 +0200

> Does this error mean that there were too many classes/libs that it had
> to search through or something else?

This rather looks like an incompatibility of your asm library:
> java.lang.NoSuchMethodError:
> org.objectweb.asm.ClassReader.accept(Lorg/objectweb/asm/
> ClassVisitor;I)V
This means that AnnotatedClassScanner is looking for a method on
ClassReader that doesn't exist.

You should check if you have a duplicate asm.jar on your classpath.

Regards,
Martin