cglib和asm

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'pullService': Invocation of init method failed; nested exception is java.lang.NoSuchMethodError: net.sf.cglib.core.Signature.<init>(Ljava/lang/String;Lnet/sf/cglib/asm/Type;[Lnet/sf/cglib/asm/Type;)V

  

被cglib和asm折磨了一整天了,各种找不到的类

目前试出这个最佳组合,留帖纪念

并且只要插入这个版本的cglib,可以一起干掉可能存在的其他版本cglib

1             <dependency>
2                 <groupId>cglib</groupId>
3                 <artifactId>cglib</artifactId>
4                 <version>99.0-does-not-exist</version>
5             </dependency>
原文地址:https://www.cnblogs.com/huamulou/p/3109522.html