Problem: Java.Lang.ClassNotFoundException: Org.Objectweb.Asm.Type
Caused by: java.lang.NoClassDefFoundError: org.objectweb.asm.Type
Cause: asm.jar is missing.
Solution: Add the dependency in the project's pom.xml.
<dependency>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
<version>3.3.1</version>
</dependency>
1 comment:
Thanks Ada...Even this http://www.compiletimeerror.com/2013/06/javalangnoclassdeffounderror.html might help you... Have a look...
Post a Comment