2、将插件解压缩到MyEclipse根目录下的Axis-Plugin-Dir\eclipse\plugins目录中,将Axis2_Codegen_Wizard_1.2.1改名为org.apache.axis2.tool.codegen.eclipse.plugin.CodegenWizardPlugin,将Axis_Service_Archiver_1.0.0改名为org.apache.axis2.tool.Axis_Service_Archiver_1.0.0
3、在MyEclipse目录下的eclipse\links目录下增加文件axis-eclipse-plugin.link,内容为path=MyEclipse所在目录的绝对路径\\Axis-Plugin-Dir,然后删除MyEclipse\eclipse\configuration目录下的org.eclipse.update目录
4、启动myeclipse,在file->new->other中即可看到Axis2 Wizards,如下图所示。至此,axis2插件安装成功。
参考资料:
[1] http://www.blogjava.net/mlzry0612/articles/185209.html
MyEclipse下Axis2插件安装笔记
关闭 Eclipse
- copy %AXIS2_HOME%\lib\backport-util-concurrent-3.1.jar 到下列 folder
%ECLIPSE_HOME%\plugins\Axis2_Codegen_Wizard_1.3.0\lib
- 注册此 jar 包: 編輯 %ECLIPSE_HOME%\plugins\Axis2_Codegen_Wizard_1.3.0\plugin.xml , 在 <runtime> 內加入下面的字串
<library name="lib/backport-util-concurrent-3.1.jar">
<export name="*"/>
</library>
- 执行 Eclipse 即可
- 若问题仍存在, 尝试改变Eclipse 使用的 JRE, 换成 JAVA 6
- 使用 JRE 1.6 启动 Eclipse 后, 若仍有问题, 试着加入 -clean 参数启动 Eclipse, 清除 osig cache:
eclipse.exe -vm "c:\java\jre1.6.0_05\bin\java.exe" -clean -console -consoleLog -debug -vmargs -Xmx384M
- 关闭 Eclipse 后, 再以一般方式启动 Eclipse, 应可解决问题
[參考]
Error while using Axis2 Code Generator Plugin for Eclipse
http://www.nabble.com/Error-while-using-Axis2-Code-Generator-Plugin-for-Eclipse-td17147595.html
http://web-latte.blogspot.com/2008/05/axis2-eclipse-plugin-code-generator.html
少包啦!
去AXIS2的安装目录的lib下面把backport-util-concurrent-3.1.jar和geronimo-stax- api_1.0_spec-1.0.1.jar复制到插件安装目录下面的lib里,在修改plugin.xml文件,在 <runtime>中间加入
<library name="lib/backport-util-concurrent-3.1.jar">
<export name="*"/>
</library>
<library name="lib/geronimo-stax-api_1.0_spec-1.0.1.jar">
<export name="*"/>
</library>
就可以啦啊。