Using OSGi blueprint with CamelPage edited by Claus IbsenChanges (2)
Full ContentUsing OSGi blueprint with CamelAvailable as of Camel 2.4 A custom XML namespace for Blueprint has been created to let you leverage the nice XML dialect. Given Blueprint custom namespaces are not standardized yet, this namespace can only be used on the Apache Aries Blueprint implementation, which is the one used by Apache Karaf. OverviewThe XML schema is mostly the same as the one for Spring, so all the xml snippets throughout the documentation referring to Spring XML also apply to Blueprint routes. Here is a very simple route definition using blueprint:
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"> <camelContext xmlns="http://camel.apache.org/schema/blueprint"> <route> <from uri="timer:test" /> <to uri="log:test" /> </route> </camelContext> </blueprint> There are a few limitations at this point about the supported xml elements (compared to the Spring xml syntax):
However, using blueprint when you deploy your applications in an OSGi enviroment has several advantages:
Using camel-blueprintTo leverage camel-blueprint in OSGi, you only need the Aries Blueprint bundle and the camel-blueprint bundle, in addition to camel-core and its dependencies. If you use Karaf, you can use the feature named camel-blueprint which will install all the required bundles.
Change Notification Preferences
View Online
|
View Changes
|
Add Comment
|
- [CONF] Apache Camel > Using OSGi blueprint with Camel confluence
- [CONF] Apache Camel > Using OSGi blueprint with Camel confluence
- [CONF] Apache Camel > Using OSGi blueprint with Camel confluence