blueprint里面如何获取整个容器里面的所有camelContext

发布于 2021-11-29 18:05:17 字数 2311 浏览 872 评论 4

如何拿到整个blueprint容器(karaf)的所有(所有bundle的)camelContext

BlueprintContainer.getComponentIds()这个拿不到其他bundle的camelContext,

只能拿到自己bundle的所有camelContext

PS : 

比如说:我向karaf的deploy目录仍了一个blueprint-restlet-config.xml

内容如下

<?xml version="1.0" encoding="UTF-8"?>
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
           xmlns:camel-cxf="http://camel.apache.org/schema/blueprint/cxf"
           xmlns:cxfcore="http://cxf.apache.org/blueprint/core"
           xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd 
		   http://aries.apache.org/xmlns/jpa/v1.1.0 http://aries.apache.org/schemas/jpa/jpa_110.xsd 
		   http://aries.apache.org/xmlns/transactions/v1.0.0 http://aries.apache.org/schemas/transaction/transactionv10.xsd
		   http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0 http://aries.apache.org/schemas/blueprint-cm/blueprint-cm-1.1.0.xsd 
		   http://camel.apache.org/schema/blueprint/cxf http://camel.apache.org/schema/blueprint/cxf/camel-cxf.xsd
		   http://cxf.apache.org/blueprint/core http://cxf.apache.org/schemas/blueprint/core.xsd">
    
	<camelContext id="restletCamelContext" xmlns="http://camel.apache.org/schema/blueprint">
		
		<restConfiguration port="6633" component="restlet" bindingMode="auto"/>
		
	</camelContext>
	
</blueprint>


然后,我再另外一个bundle里面却获取不到这个camelContext

请问,这个怎么破

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

私藏温柔 2021-11-30 08:35:09

可以查看一下camel-swagger-java这个组件的源码,我看到过里面的实现,可以获得整个的camelContext。

情场扛把子 2021-11-30 07:06:43

最成熟的开源企业级OSGi快速开发平台JXADF,http://osgi.jxtech.net

眉黛浅 2021-11-30 01:00:20

好像拿不到吧,我也不熟悉

彼岸花ソ最美的依靠 2021-11-29 22:19:54

按理说,我已经拿到了
BlueprintContainer(blueprint的容器了),就应该可以拿到容器里面的所有东西了,但是,为啥还是不行

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文