(转)myeclipse整合ssh包冲突解决

方法一:

在使用Spring的AOP编程时,会用到这几个lib:

asm-2.2.2.jar

asm-commons-2.2.2.jar

asm-util-2.2.2.jar

Hibernate使用如果lib:

asm.jar

asm-attrs.jar

其中asm-2.2.2.jar与asm.jar存在类上的冲突!!!

使用其中之一或两者都使用,可能会出现如下错误:

java.lang.NoClassDefFoundError:org/objectweb/asm/CodeVisitor

java.lang.NoClassDefFoundError:org/objectweb/asm/commons/EmptyVisitor

java.lang.NoSuchMethodError: org.objectweb.asm.ClassVisitor.visit。。。。。。

解决办法是:

1.去掉类路径上的关于Hibernate的3个lib

asm.jar

asm-attrs.jar

cglib-2.1.3.jar

2.加入Spring中的以下4个lib

asm-2.2.2.jar

asm-commons-2.2.2.jar

asm-util-2.2.2.jar

cglib-nodep-2.1_3.jar

方法二:

在使用Spring的AOP编程时,会用到这几个lib:

asm-2.2.2.jar

asm-commons-2.2.2.jar

asm-util-2.2.2.jar

Hibernate使用如果lib:

asm.jarasm-attrs.jar

其中asm-2.2.2.jar与asm.jar存在类上的冲突。

使用其中之一或两者都使用,可能会出现如下错误: java.lang.NoClassDefFoundError: org/objectweb/asm/CodeVisitorjava.lang.NoClassDefFoundError: org/objectweb/asm/commons/EmptyVisitorjava.lang.NoSuchMethodError: org.objectweb.asm.ClassVisitor.visit

下面是解决方法手工编辑你的.classpath文件,比如我这个(只有部分内容)

<classpathentry kind="con" path="melibrary.com.genuitec.eclipse.springframework.MYECLIPSE_SPRING20_CORE"/>

<classpathentrykind="con"path="melibrary.com.genuitec.eclipse.springframework.MYECLIPSE_SPRING20_DAO"/>

<classpathentrykind="con"path="melibrary.com.genuitec.eclipse.springframework.MYECLIPSE_SPRING20_AOP"/>

<classpathentrykind="con"path="melibrary.com.genuitec.eclipse.springframework.MYECLIPSE_SPRING20_WEB"/>

<classpathentrykind="con"path="melibrary.com.genuitec.eclipse.hibernate.MYECLIPSE_HIBERNATE3_1_CORE"/>

<classpathentry kind="lib" path="WebRoot/WEB-INF/lib/mysql-connector-java-5.0.4-bin.jar"/>

将最后2行hibernate和mysql驱动,手工复制到springframework的lib前面。

<classpathentrykind="con"path="melibrary.com.genuitec.eclipse.hibernate.MYECLIPSE_HIBERNATE3_1_CORE"/>

<classpathentrykind="lib"path="WebRoot/WEB-INF/lib/mysql-connector-java-5.0.4-bin.jar"/>

<classpathentrykind="con"path="melibrary.com.genuitec.eclipse.springframework.MYECLIPSE_SPRING20_CORE"/>

<classpathentrykind="con"path="melibrary.com.genuitec.eclipse.springframework.MYECLIPSE_SPRING20_DAO"/>

<classpathentrykind="con"path="melibrary.com.genuitec.eclipse.springframework.MYECLIPSE_SPRING20_AOP"/>

<classpathentry kind="con" path="melibrary.com.genuitec.eclipse.springframework.MYECLIPSE_SPRING20_WEB"/>

现在你再试试启动,应该不会报错了。

我这里用了myeclipse的jar包。如果你是自定义用户库jar包,那么只要保证spring的jar包在hibernate之后加载,项目在部署的时候spring的jar包就会覆盖掉hibernate的jar包

相关推荐