如何在activemq camel路由中使用通配符和变量替换

时间:2014-05-28 21:23:35

标签: apache-camel activemq

我想建立一个通用的camel路由,它将所有消息路由到一组队列,并将其路由到具有相同名称和后缀的队列。我认为它看起来像这样:

<camelContext id="camel" trace="false" xmlns="http://camel.apache.org/schema/spring">
    <route id="genericRoute">
        <from uri="activemq:queue:somequeues.*" />
        <to uri="${getMyQueueName}.moo" />
    </route>
</camelContext>

activemq在这里讨论通配符:http://activemq.apache.org/wildcards.html但我找不到任何其他内容。

这可能是不可能的,但如果是的话会非常方便!

谢谢,

1 个答案:

答案 0 :(得分:1)

请参阅此常见问题解答,了解您的示例中错误的<to>