我正在使用 JBoss Fuse 6.1.0 和 Camel 2.10.0.redhat-60024 。
路线列表已为人所知。例如:#start, #step1, #step2, #step3, #finish
。
但我不知道序列。或者有时可能不需要某些路线。我会知道只有#router
路线(请参见下面的代码)。
例如:#start, #step2, #step1, #step3, #finish.
或#start, #step1, #step3, #finish.
等等。
但是 Camel 2.10.0 没有dynamicRouter
这样的东西。我决定这样做:
<?xml version="1.0" encoding="UTF-8"?>
...
<camelContext id="blueprintContext" trace="true"
xmlns="http://camel.apache.org/schema/blueprint">
<route id="start">
<from uri="..." />
<to uri="vm:router" />
</route>
<route id="router">
<from uri="vm:router" />
<bean ref="stepGenerator" method="nextStep" />
<choice>
<when>
<simple>${header.step} contains 'step1'</simple>
<to uri="vm:step1" />
</when>
<when>
<simple>${header.step} contains 'step2'</simple>
<to uri="vm:step2" />
</when>
<when>
<simple>${header.step} contains 'step3'</simple>
<to uri="vm:step3" />
</when>
<when>
<simple>${header.step} contains 'finish'</simple>
<to uri="vm:finish" />
</when>
</choice>
</route>
<route id="step1">
<from uri="vm:step1" />
<log message="Step 1 started." />
<!-- Some logic -->
<to uri="vm:router" />
</route>
<route id="step2">
<from uri="vm:step2" />
<log message="Step 2 started." />
<!-- Some logic -->
<to uri="vm:router" />
</route>
<route id="step3">
<from uri="vm:step3" />
<log message="Step 3 started." />
<!-- Some logic -->
<to uri="vm:router" />
</route>
<route id="finish">
<from uri="vm:finish" />
<log message="Finished!" />
</route>
</camelContext>
想象一下,我们有下一个序列:#start, #step1, #step2, #step3, #finish
。如果您尝试运行,则会在#start -> #router-> #step1
停止。
#step1
<to uri="vm:router" />
无效。如果你两次呼叫路由它将无法正常工作。为什么?
如何在 Camel 2.10.0 ?