现有路线:
from("direct:test").id(id+"direct:test")
.hystrix()
.id("testHystrix").hystrixConfiguration().corePoolSize(corePoolSize)
.end()
.process(requestProcessor)
.to(endPoint)
.onFallbackViaNetwork()
.toD("${headers.fallbackEndPoint}")
.endHystrix();
是否有可能根据交换的主体动态选择回退逻辑onFallback()或onFallbackViaNetwork()。
答案 0 :(得分:1)
否,但是您可以有2条路由,其中每条路由都有一条,然后根据邮件正文内容路由到适当的路由。