myEclipse8.5下SSH2开发时如何删除antlr-2.7.2包

SSH2组合完成后,执行hibernate的HQL查询时,报错:
java.lang.NoSuchMethodError: antlr.collections.AST.getLine()I

看来是antlr这个语法解析包出错
因为Struts2.1.8.1自带的antlr-2.7.2.jar,比Hibernate3.3自带的antlr-2.7.6.jar的版本要低,故要在build path里删除前一个低版本的。

删除前myEclipse的界面如下图:
[img]http://dl.iteye.com/upload/attachment/265421/7a31db98-dbe4-39ff-baa6-3c7f49639215.png[/img]

[b]解决方法:[/b]假设你的myEclipse安装在G:\ Genuitec目录下
1)修改myEclipse的安装目录的配置文件:
G:\Genuitec\MyEclipse 8.5 1\configuration\org.eclipse.osgi\bundles\105\1\.cp\preferences.ini
去掉其中的MYECLIPSE_STRUTS2_DATA_HOME/2.1/core/antlr-2.7.2.jar;\
然后再删除antlr-2.7.2.jar: 有两处
G:\Genuitec\MyEclipse 8.5 1\configuration\org.eclipse.osgi\bundles\105\1\.cp\data\2.1\data
G:\Genuitec\MyEclipse 8.5 1\configuration\org.eclipse.osgi\bundles\105\1\.cp\data\2.1core
2)然后会发现在重新发布程序后,又在程序的lib目录下出现,没有真正删除。
继续查看myEclipse的安装目录:仔细寻找相关配置文件。
在myEclipse下,查看struts2包的属性:
melibrary.com.genuitec.eclipse.struts2.MYECLIPSE_STRUTS21_CORE
这是一个myEclipse的变量,查看这个字符串是在哪个文件中定义的。
G:\Genuitec\MyEclipse 8.5 1\configuration\org.eclipse.equinox.simpleconfigurator \bundles.info
找到其中的与struts有关的项,定位到struts2,即看到这个包
G:\Genuitec\Common\plugins\com.genuitec.eclipse.struts2_8.5.0.me201003121946.jar
再查看它,知道有个配置文件“preferences.ini”,修改它,去掉相关antlr-2.7.2.jar信息,然后再去掉包中自带的antlr-2.7.2.jar。

删除后myEclipse的界面如下图:

[img]http://dl.iteye.com/upload/attachment/265425/a902de4c-c759-31da-aa8e-d42b6aa56249.png[/img]


[b]所以,最后小结如下:[/b]
把G:\Genuitec\Common\plugins\com.genuitec.eclipse.struts2_8.5.0.me201003121946.jar包中的配置修改,并去掉其中的antlr-2.7.2.jar即可。

myEclipse的目录分两大类,一类是工作目录,一类是系统目录,而上述的包就放在系统目录中。

你可能感兴趣的:(myEclipse8.5下SSH2开发时如何删除antlr-2.7.2包)