第 8 章 消息路由
摘要
消息路由模式描述了将消息频道链接在一起的各种方法。这包括可应用于消息流的各种算法(无需修改消息正文)。
8.1. 基于内容的路由器
概述
基于内容的路由器 (如 图 8.1 “基于内容的路由器模式” 所示)可让您根据消息内容将消息路由到适当的目的地。
图 8.1. 基于内容的路由器模式
Java DSL 示例
以下示例演示了如何根据各种 predicate 表达式的评估,将来自 input, seda:a
, endpoint 的请求路由到 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>