5

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

  <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 first 策略来生成 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

4 回答 4

9

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

它可以通过上面的链接或从 maven 下载。

<dependency>
    <groupId>javax.xml.ws</groupId>
    <artifactId>jaxws-api</artifactId>
    <version>2.3.1</version>
</dependency>
于 2012-11-30T12:31:35.460 回答
1

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

于 2012-12-03T16:35:37.297 回答
0

EndpointReference在 JAX-WS 2.1 中引入,而 JAX-WS 2.1 自 Java 1.6.0_04 起包含在 JRE 中。

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

于 2012-11-30T12:29:06.883 回答
0

好像这个类不在你的类路径中。您应该将相关项目添加到您的 POM。通过搜索网络,这个类存在于许多库中。这是包含此类人工制品的摘录:

<dependency>
  <groupId>javax.xml.ws</groupId>
  <artifactId>jaxws-api</artifactId>
  <version>2.2.3</version>
</dependency>
于 2012-11-30T12:31:50.133 回答