79.12. 使用蓝图配置 destination 和 conduit
从 Camel 2.11.x 中,支持 Camel 传输配置蓝图。
如果使用蓝图,您应该使用命名空间 http://cxf.apache.org/transports/camel/blueprint
并导入类似 blow 的 schema。
为蓝图添加配置命名空间
<beans ... xmlns:camel="http://cxf.apache.org/transports/camel/blueprint" ... xsi:schemaLocation="... http://cxf.apache.org/transports/camel/blueprint http://cxf.apache.org/schmemas/blueprint/camel.xsd ...>
在蓝图 camel:conduit
camel:destination
中只有一个 camelContextId 属性,它们不支持在 camel 目的地中指定 camel 上下文。
<camel:conduit id="*.camel-conduit" camelContextId="camel1" /> <camel:destination id="*.camel-destination" camelContextId="camel1" />