我想重用蓝图DSL在不同的驼峰路线中定义的转换步骤,但无法找到如何实现这一目标。
我们在这里举个例子:
<camelContext id="jms-context" xmlns="http://camel.apache.org/schema/blueprint">
<route id="inputAqTest8">
<from id="_fromAqTest8" uri="aqTest8:queue:QUELOGENTRY"/>
<!-- some complicated transformation here -->
<to id="_to1" uri="umChannel:topic:Input"/>
</route>
<route id="inputAqTest12">
<from id="_fromAqTest12" uri="aqTest12:queue:QUEPOSTDATA"/>
<!-- some complicated transformation here -->
<to id="_to2" uri="umChannel:topic:Input"/>
</route>
</camelContext>
我已经通过将转换和交付移动到由直接组件连接的自己路线来优化它。
<camelContext id="jms-context" xmlns="http://camel.apache.org/schema/blueprint">
<route id="inputAqTest8">
<from id="_fromAqTest8" uri="aqTest8:queue:QUELOGENTRY"/>
<to id="_to1" uri="direct:process"/>
</route>
<route id="inputAqTest12">
<from id="_fromAqTest12" uri="aqTest12:queue:QUEPOSTDATA"/>
<to id="_to2" uri="direct:process"/>
</route>
<route id="process">
<from id="_from1" uri="direct:process"/>
<!-- some complicated transformation here -->
<to id="_to" uri="umChannel:topic:Input"/>
</route>
</camelContext>
这完全重用了转换逻辑。但由于直接同步“呼叫”,路由不再是独立的。此外,我现在只有一个生产者放慢速度,因为不会发生转换后的消息的并行传递(这也是我不想将所有内容合并到一条路由中的原因)。
那么我怎样才能充分利用这两种方法 - 重用转换的定义并保持路由独立?提前感谢您的想法。
答案 0 :(得分:0)
您可以在java类中提取转换逻辑,并将该java类作为spring原型bean,并在每个路由中使用该bean的实例。我很确定它会做这项工作
<bean id="myBean" scope="pototype" class="com.my.org.MyComplexTransformation/>
<route id="inputAqTest8">
<from id="_fromAqTest8" uri="aqTest8:queue:QUELOGENTRY"/>
<bean ref="myBean"/>
<to id="_to1" uri="umChannel:topic:Input"/>
</route>
<route id="inputAqTest12">
<from id="_fromAqTest12" uri="aqTest12:queue:QUEPOSTDATA"/>
<bean ref="myBean"/>
<to id="_to2" uri="umChannel:topic:Input"/>
</route>
答案 1 :(得分:0)
关于direct是不正确的,它就像一个java方法调用,所以你可以从每个路由同时调用路由,它只是使用调用线程。
所以你将变换器逻辑分离成一个路由并使用direct调用它是一个很好的解决方案。