消息路由器
Spring Integration 本身提供了专门的路由器类型,包括
-
HeaderValueRouter
-
PayloadTypeRouter
-
ExceptionTypeRouter
-
RecipientListRouter
-
XPathRouter
与许多其他 DSL IntegrationFlowBuilder
EIP 方法一样,route()
方法可以应用任何 AbstractMessageRouter
实现,或者为了方便起见,可以应用一个 String
作为 SpEL 表达式或一个 ref
-method
对。此外,您可以使用 lambda 配置 route()
,并使用 lambda 作为 Consumer<RouterSpec<MethodInvokingRouter>>
。流畅的 API 还提供了 AbstractMappingMessageRouter
选项,例如 channelMapping(String key, String channelName)
对,如下面的示例所示
@Bean
public IntegrationFlow routeFlowByLambda() {
return IntegrationFlow.from("routerInput")
.<Integer, Boolean>route(p -> p % 2 == 0,
m -> m.suffix("Channel")
.channelMapping(true, "even")
.channelMapping(false, "odd")
)
.get();
}
以下示例展示了一个简单的基于表达式的路由器
@Bean
public IntegrationFlow routeFlowByExpression() {
return IntegrationFlow.from("routerInput")
.route("headers['destChannel']")
.get();
}
routeToRecipients()
方法接受一个 Consumer<RecipientListRouterSpec>
,如下面的示例所示
@Bean
public IntegrationFlow recipientListFlow() {
return IntegrationFlow.from("recipientListInput")
.<String, String>transform(p -> p.replaceFirst("Payload", ""))
.routeToRecipients(r -> r
.recipient("thing1-channel", "'thing1' == payload")
.recipientMessageSelector("thing2-channel", m ->
m.getHeaders().containsKey("recipient")
&& (boolean) m.getHeaders().get("recipient"))
.recipientFlow("'thing1' == payload or 'thing2' == payload or 'thing3' == payload",
f -> f.<String, String>transform(String::toUpperCase)
.channel(c -> c.queue("recipientListSubFlow1Result")))
.recipientFlow((String p) -> p.startsWith("thing3"),
f -> f.transform("Hello "::concat)
.channel(c -> c.queue("recipientListSubFlow2Result")))
.recipientFlow(new FunctionExpression<Message<?>>(m ->
"thing3".equals(m.getPayload())),
f -> f.channel(c -> c.queue("recipientListSubFlow3Result")))
.defaultOutputToParentFlow())
.get();
}
.routeToRecipients()
定义中的 .defaultOutputToParentFlow()
允许您将路由器的 defaultOutput
设置为网关,以便为主流程中不匹配的消息继续处理。
另请参阅 Lambdas 和 Message<?>
参数.