当前位置 : 主页 > 网页制作 > Nodejs >

webservice cxf客户端调用问题

来源:互联网 收集:自由互联 发布时间:2021-06-24
开发IDE是eclipse3.4.2 spring+cxf 服务器启动没有问题;客户端调用出现问题。 抛出的异常为 警告: Failed to create application context. org.springframework.beans.factory.BeanCreationException: Error creating bean w

开发IDE是eclipse3.4.2

spring+cxf
服务器启动没有问题;客户端调用出现问题。

抛出的异常为

警告: Failed to create application context.
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.apache.cxf.wsdl.WSDLManager' defined in class path resource [META-INF/cxf/cxf.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [org.apache.cxf.wsdl11.WSDLManagerImpl]: Constructor threw exception;

 

解决方法:

修改项目的.classpath文件

找到   

<classpathentry kind="con"  path=" melibrary.com.genuitec.eclipse.j2eedt.core.MYECLIPSE_JAVAEE_5_CONTAINER"/>

修改为

<classpathentry kind="con" path="com.genuitec.eclipse.j2eedt.core.J2EE14_CONTAINER "/>

网友评论