org/objectweb/asm/Type 异常

Java代码   
  1. org/objectweb/asm/Type异常   
  2. nested exception is java.lang.NoClassDefFoundError: org/objectweb/asm/Type  
	org/objectweb/asm/Type异常
	nested exception is java.lang.NoClassDefFoundError: org/objectweb/asm/Type

  

解决方法:

 

 

Java代码   
  1. 原因是Spring中的com.springsource.net.sf.cglib-2.2.0.jar与Hibernate中的cglib-2.2.jar相冲突!   
  2. 两种框架整合时Spring中的com.springsource.net.sf.cglib-2.2.0.jar是必须的,取消Hibernate中的cglib-2.2.jar即可

你可能感兴趣的:(spring,hibernate)