`

axis2 java.lang.reflect.InvocationTargetException错误解决方法

    博客分类:
  • java
阅读更多
在使用codegen1.3插件来从WSDL生成代码,到了最后一步竟然出然 了"An error occurred while completing process -java.lang.reflect.InvocationTargetException"的错误 
产生这种错误的原因一般有2种:首先关闭eclipse。
 
注意有可能是两种错误同时出现

1.jar包缺失 

从AXIS2的LIB库中复制"geronimo-stax-api_1.0_spec-1.0.1.jar"和"backport-util-concurrent-3.1.jar"文件到Codegen的lib目录中,同时修改plugin.xml文件,添加 

<library name="lib/geronimo-stax-api_1.0_spec-1.0.1.jar"> 
<export name="*"/> 
</library> 
<library name="lib/backport-util-concurrent-3.1.jar"> 
<export name="*"/> 
</library> 
 

2.版本问题 
F:\Program Files\MyEclipse 6.0\eclipse\plugins\Axis2_Codegen_Wizard_1.3.0\plugin.xml中 
<plugin 
   id="Axis2_Codegen_Wizard" 
   name="Axis2 Codegen Wizard Plug-in" 
   version="1.3.0" 
   provider-name="Apache Software Foundation" 
   class="org.apache.axis2.tool.codegen.eclipse.plugin.CodegenWizardPlugin"& gt;
 
看看自己下载的axis2版本是否和这个配置一致,像我的是axis2-1.5.1则需修改上面的配置为
<plugin 
   id="Axis2_Codegen_Wizard" 
   name="Axis2 Codegen Wizard Plug-in" 
   version="1.5.1"         //对应的版本号 
   provider-name="Apache Software Foundation" 
   class="org.apache.axis2.tool.codegen.eclipse.plugin.CodegenWizardPlugin">
 

然后再将文件夹的名字Axis2_Codegen_Wizard_1.3.0改为Axis2_Codegen_Wizard_1.5.1 
修改完以上2步重新启动eclipse即可。

 

分享到:
评论

相关推荐

    解决axis2-CodegenWizardPluginBUG- java.lang.reflect.InvocationTargetException

    3. `一个困扰我的异常java.lang.reflect.InvocationTargetException.txt`:这是一个文本文件,很可能包含了详细的异常堆栈信息,这对于定位问题的根源至关重要。 4. `plugin.xml`:这通常是插件配置文件,用于描述...

    MyEclipse axis2 wsdl java.lang.reflect.invocationtargetexception

    MyEclipse axis2 wsdl java.lang.reflect.invocationtargetexception code gen 大家要注意一定要仔细,这个问题基本上缺少包引起的,而且一定要clean 如果需要axis2插件 以及这个plugins中的包在我的其他资源里面有

    axis2 InvocationTargetException

    标题 "axis2 InvocationTargetException" 描述的是一个与Apache Axis2框架相关的编程问题,该问题通常在执行服务调用时出现,提示"InvocationTargetException"。这可能是由于多种原因引起的,包括但不限于错误的服务...

    webservice启动没有问题,通过自动生成的客户端报错

    faultString: java.lang.reflect.InvocationTargetException faultActor: faultNode: faultDetail: {http://xml.apache.org/axis/}stackTrace: AxisFault faultCode: {...

    wsdl生成java客户端报错问题解决方法

    解决使用wsdl生成java客户端报错:java.lang.reflect.invocationtargetexception的方法之一

    MyEclipse下使用Axis开发Web Service()

    本文主要描述如何使用Apache开源项目Axis提供的API来实现Web Services。本文中的提到的例子只为了方便本文的描述而提出,有不妥之处请见谅。...里面带有解决:eclipse Axis2 Codegen plugin报错问题

    javacode发布成webservice

    ### Java代码发布为WebService的方法与步骤 在当前的软件开发领域中,将Java代码发布为WebService是一种常见的做法,尤其在企业级应用和服务交互场景中。本文将基于提供的标题、描述及部分图片描述内容,详细阐述...

    Axis2,Axis2 Eclipse plugin安装配置及安装过程中问题解决

    3、解决Axis2 java.lang.reflect.InvocationTargetException 在使用codegen插件从WSDL生成Java源代码时,可能会遇到“An error occurred while completing process - java.lang.reflect.InvocationTargetException”...

    学习AXIS2遇到的一个问题与解决

    通过上述步骤,可以有效解决在MyEclipse中使用Axis2插件时遇到的`java.lang.reflect.InvocationTargetException`异常。这不仅能够提高开发效率,还能够避免因错误而导致的项目延期等问题。对于初学者来说,这是一个...

    Axis2 code generator

    -java.lang.reflect.InvocationTargetException 是因为少了两个jar包: backport-util-concurrent-3.1.jar 包和geronimo-stax-api_1.0_spec-1.0.1.jar 包 [解决方案] : (1).关闭 Eclipse (2).copy %AXIS2_HOME%\...

    Axis2,Axis2+Eclipse+plugin安装配置及安装过程中问题解决.doc

    #### 三、解决 java.lang.reflect.InvocationTargetException 错误 在使用 codegen 插件从 WSDL 生成 Java 代码时可能会遇到以下错误: ``` An error occurred while completing process - java.lang.reflect....

    backport-util-concurrent-3.1.jar geronimo-stax-api_1.0_spec-1.0.1.jar 下载

    An error ocCurred while completing process -java.lang.reflect.InvocationTargetException (1).关闭 Eclipse (2).copy %AXIS2_HOME%\lib\ 下的 backport-util-concurrent-3.1.jar 和 geronimo-stax-api_1.0_...

    myeclipse6.5 下axis2插件的安装

    - 有时在生成代码过程中可能会遇到错误,例如`"An error occurred while completing process -java.lang.reflect.InvocationTargetException"`。这种情况下,需要从Axis2的LIB库中复制`geronimo-stax-api_1.0_spec-...

    backport-util-concurrent-3.1.jar和geronimo-stax-api_1.0_spec-1.0.1.jar

    An error ocCurred while completing process -java.lang.reflect.InvocationTargetException 解决用到的jar包,两个jar包在backport-util-concurrent-3.1.jar和geronimo-stax-api_1.0_spec-1.0.1.jar.zip的压缩文件...

    backport-util-concurrent-3.1.jar

    下载的axis2-1.6.2后打包成wsdl后出错process-java.lang.reflect.InvocationTargetException,看网上说要用axis里面lin里面的backport-util-concurrent-3.1.jar,结果找了半天么有, 网上找了半天找了一份, 希望...

    MyEclipse下Axis2插件的下载和安装:wsdl生成客户端

    6 An error occurred while completing process java lang reflect InvocationTargetException 的错误 嗯不用急 有得解 不过我当初很惨弄了一个晚上 解决方法如下: step 1 从 AXIS2 的 LIB 库中复制 &quot;...

    eclipse,axis2

    - **错误提示:** “An error occurred while completing process-java.lang.reflect.InvocationTargetException” - 解决方案:确保已经正确安装了所有必需的库和插件,并且版本兼容。 - **库冲突:** - **步骤1...

Global site tag (gtag.js) - Google Analytics