Exception in thread "main" java.lang.IncompatibleClassChangeError: net/sf/cglib/core/DebuggingClassW

问题: 今天在运行程序的时候报如下错误。

1. java.lang.NoClassDefFoundError: org/objectweb/asm/CodeVisitor
2. Exception in thread "main" java.lang.IncompatibleClassChangeError: net/sf/cglib/core/DebuggingClassWriter

分析:此问题一看就是cglib和asm版本包有问题了,因此查找自己现在引用的cglib版本是3.1,asm包没有引用。

解决方案:我把cglib版本换成2.2.2,cglib2.2.2会自动引用asm3.1.1包,问题就搞定了。

你可能感兴趣的:(Exception in thread "main" java.lang.IncompatibleClassChangeError: net/sf/cglib/core/DebuggingClassW)