spring遇到的异常整理

有可能不适用于你

 

异常1:java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory

缺少包commons-logging的jar,本人下载了一个commons-logging-1.1.1.jar,引入,问题解决,下载地址点击打开链接


异常2:java.lang.NoClassDefFoundError: org/springframework/dao/support/PersistenceExceptionTranslator

缺少包,加入org.springframework.transaction-3.1.1.RELEASE.jar即可


异常3:Offending resource: class path resource

缺少包,加入org.springframework.aop-3.1.1.RELEASE.jar即可


异常4java.lang.NoClassDefFoundError: org/aopalliance/intercept/MethodInterceptor

缺少包aopalliance-alpha1.jar

下载地址http://sourceforge.net/projects/aopalliance/files/ 下完引入


异常5:java.lang.NoClassDefFoundError: org/aopalliance/aop/Advice

缺少包com.springsource.org.aopalliance-1.0.0.jar,下载地址点击打开链接下完引入


异常6: org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'org.springframework.transaction.interceptor.TransactionInterceptor#0' must be of type [org.aopalliance.aop.Advice], but was actually of type [org.springframework.transaction.interceptor.TransactionInterceptor]

原因是aopalliance-alpha1.jar和com.springsource.org.aopalliance-1.0.0.jar冲突了,删除前者(这里有点不是很明白,异常4的解决包怎么就可以删除了呢,是不是异常5的解决方法也适用于异常4,有待尝试)


异常7:org.springframework.aop.framework.AopConfigException: Cannot proxy target class because CGLIB2 is not available. Add CGLIB to the class path or specify proxy interfaces.

缺少cglib的包,下载地址http://sourceforge.net/projects/cglib/files/latest/download?source=files 下完引入


异常8:java.lang.NoClassDefFoundError: javax/mail/MessagingException

缺少activation.jar, mail.jar

 

异常9

NoClassDefFoundError: org/aspectj/weaver/reflect/ReflectionWorld$ReflectionWorldException 解决办法,

 

是因为缺少了aspectjweaver.jar

 

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