2017-09-18 80 views
0

我已经将“http-conf”命名空间最近添加到了我现有的蓝图容器中。但是如果我正在运行我的单元测试用例,则会通过抛出以下异常来关闭我的蓝图容器。但是,如果我将它安装在我的karaf中,相同的代码工作正常。骆驼CXF - “http-conf”命名空间抛出InvalidSyntaxException

我的蓝图守则,

<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:camel="http://camel.apache.org/schema/blueprint" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camel-cxf="http://camel.apache.org/schema/blueprint/cxf" 
    xmlns:cxfcore="http://cxf.apache.org/blueprint/core" xmlns:http-conf="http://cxf.apache.org/transports/http/configuration" 
    xsi:schemaLocation="http://camel.apache.org/schema/blueprint http://camel.apache.org/schema/blueprint/camel-blueprint.xsd 
         http://camel.apache.org/schema/blueprint/cxf http://camel.apache.org/schema/blueprint/cxf/camel-cxf.xsd"> 
    <http-conf:conduit name="*.http-conduit"> 
     <http-conf:client ReceiveTimeout="60000" ConnectionTimeout="60000"/> 
    </http-conf:conduit> 

而且我是得了异常,

2017-09-18T13:15:24.983+0530 INFO [] com.jda.flex.sf.container.blueprint.ImportNamespaceHandler Waiting for namespace handler 
http://cxf.apache.org/transports/http/configuration [{main} waitForNamespaceHandlers:179 {}] 

2017-09-18T13:15:24.984+0530 ERROR [] org.apache.aries.blueprint.container.BlueprintContainerImpl Unable to start blueprint container for bundle Mock_LoadDepartTest/1.0.0 [{main} doRun:438 {}] 
com.jda.flex.sf.container.blueprint.ImportException: com.jda.flex.sf.container.blueprint.ImportException: com.jda.flex.sf.container.blueprint.ImportException: 
org.osgi.framework.InvalidSyntaxException: Filter ended abruptly: (&objectClass=org.apache.aries.blueprint.NamespaceHandler) (osgi.service.blueprint.namespace=http://cxf.apache.org/transports/http/configuration) 
. 
. 
. 
2017-09-18T13:15:24.987+0530 INFO [] com.jda.tma.integration.mock.tests.Mock_LoadDepartTest Waiting 10000ms for Blueprint Container to initialize [{main} waitForTestBundleBlueprintContainer:385 {}] 

编辑

要解决这个问题,我已经添加了一些依赖。现在,我摆脱了InvalidSyntaxException”例外的。但是,得到不同的异常。

我已经添加下面的依赖在我的pom.xml

<dependency> 
      <groupId>org.apache.cxf</groupId> 
      <artifactId>cxf-rt-transports-http-jetty</artifactId> 
      <version>3.2.0</version> 
     </dependency> 
     <dependency> 
      <groupId>org.apache.cxf</groupId> 
      <artifactId>cxf-rt-bindings-soap</artifactId> 
      <version>3.2.0</version> 
     </dependency> 
     <!-- https://mvnrepository.com/artifact/org.apache.cxf/cxf-rt-frontend-jaxws --> 
     <dependency> 
      <groupId>org.apache.cxf</groupId> 
      <artifactId>cxf-rt-frontend-jaxws</artifactId> 
      <version>3.2.0</version> 
     </dependency> 
     <!-- https://mvnrepository.com/artifact/org.apache.felix/org.osgi.compendium --> 
     <dependency> 
      <groupId>org.apache.felix</groupId> 
      <artifactId>org.osgi.compendium</artifactId> 
      <version>1.4.0</version> 
      <scope>test</scope> 
     </dependency> 

下面是我的异常堆栈跟踪。

2017-09-20T18:10:00.524+0530 ERROR [] org.apache.aries.blueprint.container.BlueprintContainerImpl Unable to start blueprint container for bundle Mock_LoadDepartTest/1.0.0 [{main} doRun:438 {}] 
com.jda.flex.sf.container.blueprint.ImportException: com.jda.flex.sf.container.blueprint.ImportException: org.osgi.service.blueprint.container.ComponentDefinitionException: Unknown element import in namespace http://www.osgi.org/xmlns/blueprint/v1.0.0 
    at com.jda.flex.sf.container.blueprint.ImportNamespaceHandler.parseImport(ImportNamespaceHandler.java:358)[services-core-2017.2.0-drop-13.jar:] 
    at com.jda.flex.sf.container.blueprint.ImportNamespaceHandler.parse(ImportNamespaceHandler.java:269)[services-core-2017.2.0-drop-13.jar:] 

回答

0

在POM中添加以下依赖关系并删除我上面提到的所有其他依赖项后,问题得到解决。因为这些依赖项从我的框架项目下载

<dependency> 
<groupId>org.osgi</groupId> 
<artifactId>org.osgi.compendium</artifactId> 
<version>5.0.0</version> 
<scope>test</scope> 
</dependency>