第 8 章 消息路由
摘要
消息路由模式描述了将消息频道链接到的不同方法。这包括可应用到消息流的各种算法(无需修改消息的正文)。
8.1. 基于内容的路由器
概述
通过 基于内容的路由器,如 图 8.1 “基于内容的路由器模式” 所示,您可以根据消息内容将信息路由到适当的目的地。
图 8.1. 基于内容的路由器模式
Java DSL 示例
以下示例演示了如何根据对各种 predicate 表达式的评估,将来自输入的 seda:a
:a 的端点路由到 seda:b
、queue:c
或 seda:d
:
RouteBuilder builder = new RouteBuilder() { public void configure() { from("seda:a").choice() .when(header("foo").isEqualTo("bar")).to("seda:b") .when(header("foo").isEqualTo("cheese")).to("seda:c") .otherwise().to("seda:d"); } };
XML 配置示例
以下示例演示了如何在 XML 中配置相同的路由:
<camelContext id="buildSimpleRouteWithChoice" xmlns="http://camel.apache.org/schema/spring"> <route> <from uri="seda:a"/> <choice> <when> <xpath>$foo = 'bar'</xpath> <to uri="seda:b"/> </when> <when> <xpath>$foo = 'cheese'</xpath> <to uri="seda:c"/> </when> <otherwise> <to uri="seda:d"/> </otherwise> </choice> </route> </camelContext>