1

I am getting the following error on running my program

Exception in thread "main" java.lang.RuntimeException: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'cxf' 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.bus.spring.SpringBus]: Constructor threw exception; nested exception is org.apache.cxf.bus.extension.ExtensionException: Could not load extension class org.apache.cxf.ws.policy.AssertionBuilderRegistryImpl.

my test.xml file is

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:cxf="http://cxf.apache.org/core"
    xsi:schemaLocation="http://www.springframework.org/schema/beans     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
     http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context-3.0.xsd
    http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd">


    <bean id="clientI"
        class="LI" />
    <bean id="clientL"
        class="LIn" />

        <cxf:bus>
        <cxf:outInterceptors>
            <ref bean="clientI" />
        </cxf:outInterceptors>
        <cxf:inInterceptors>
            <ref bean="clientL" />
        </cxf:inInterceptors>
    </cxf:bus>
</beans>
4

4 回答 4

3

你的类路径中有 cxf-bundle JAR 吗?因为这可能是问题所在。

你可以从这里得到它:http: //mvnrepository.com/artifact/org.apache.cxf/cxf-bundle/2.7.6(最新版本)。

于 2013-09-20T05:39:28.193 回答
1

这可能是因为您使用的是旧版本的 neethi(可能是 2.XX),而您应该使用 3.0.2 版本。检查您的依赖项。

于 2014-01-30T15:33:50.710 回答
0

为了解决问题,我必须同时添加 cxf-bundle-xxx.jar 并使用最新版本更新 neethi jar。

于 2015-02-26T12:06:15.303 回答
0

如果这发生在包含部署在 WebSphere AS 中的 cxf-WebService 的 EAR 上,

它可能来自 cxf-WebService-Module 的类加载器。请务必将 WebService-Module 的类加载器设置为 PARENT_LAST

于 2016-09-30T13:42:25.167 回答