CXF WebService的Spring配置得到了java.lang.NoClassDefFoundError:javax / xml / ws / EndpointReference

时间:2012-11-30 11:20:14

标签: java web-services spring cxf

我正在尝试让CXF与spring一起工作,maven在weblogic上。项目编译/构建正常,但是当我尝试部署它时出现了这个错误:

  <User defined listener org.springframework.web.context.ContextLoaderListener failed:    org.springframework.beans.factory.BeanCreationException: Error creating bean with name   'ibanInfos': Initialization of bean failed; nested exception is java.lang.NoClassDefFoundError: javax/xml/ws/EndpointReference.
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'ibanInfos': Initialization of bean failed; nested exception is java.lang.NoClassDefFoundError: javax/xml/ws/EndpointReference
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:527)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:456)
    at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:291)
    at  org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:288)
    Truncated. see log file for complete stacktrace
java.lang.NoClassDefFoundError: javax/xml/ws/EndpointReference
    at java.lang.Class.getDeclaredMethods0(Native Method)
    at java.lang.Class.privateGetDeclaredMethods(Class.java:2395)
    at java.lang.Class.getDeclaredMethods(Class.java:1763)
    at java.beans.Introspector$1.run(Introspector.java:1265)
    at java.security.AccessController.doPrivileged(Native Method)

知道如何解决这个问题吗? 实际上,我正在使用java第一个策略来生成WSDL。

这是我的春季档案:

  <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:jaxws="http://cxf.apache.org/jaxws"
    xsi:schemaLocation="
http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
    <import resource="classpath:META-INF/cxf/cxf.xml" />
    <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
    <import resource="classpath:service-definition-beans.xml"/> 
    <jaxws:endpoint id="ibanInfos" implementor="#ibanInfosService" address="http://localhost:7001/IbanInfos" />  
</beans>

4 个答案:

答案 0 :(得分:3)

确保您的类路径中有jaxws-api-2.1.jar

可以通过上述链接或maven下载。

<dependency>
    <groupId>javax.xml.ws</groupId>
    <artifactId>jaxws-api</artifactId>
    <version>2.2.8</version>
</dependency>

答案 1 :(得分:1)

我终于找到了问题:我实际上在10.0版本下使用了weblogic,它提供了包含EndPointInterface的Jaxws2.0。 workaroud是将jar添加到setDomainEnv.sh中,它将完美地工作。非常感谢您的回答。

答案 2 :(得分:0)

在JAX-WS 2.1中引入了

EndpointReference,自Java 1.6.0_04以来,JAX-WS 2.1被包含在JRE中。

因此,如果您的环境中EndpointReference不可用,则需要升级JRE / JDK,或将最新版本的JAX-WS API作为单独的依赖项包含。

答案 3 :(得分:0)

好像这个类不在你的类路径中。您应该将相关项添加到POM中。 从搜索网络来看,这个类存在于许多库中。以下是包含此类遗产的摘录:

<dependency>
  <groupId>javax.xml.ws</groupId>
  <artifactId>jaxws-api</artifactId>
  <version>2.2.3</version>
</dependency>