第 8 章 消息路由
摘要
消息路由模式描述了将消息通道链接到一起的各种方式。这包括可应用于消息流的各种算法(不需要修改消息正文)。
8.1. 基于内容的路由器
概述
基于内容的路由器 (如 图 8.1 “基于内容的路由器模式” )允许您根据消息内容将消息路由到适当的目的地。
图 8.1. 基于内容的路由器模式
Java DSL 示例
以下示例演示了如何根据各种谓词的评估将来自输入的 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>