如果 X 为假,我想路由到 A,如果 X 为真,我想路由到 A 和 B
我试着写一些类似的东西
from(?)
.choice()
.when( X )
.multicast().to(A,B).end()
.otherwise() // I get a (compile) error underlined here saying 'otherwise() is not on type ProcessorDefinition
.to( A )
它不喜欢它 我怀疑这不是最好的表达方式
基本上我总是想路由到(A),如果有这种情况,我也想路由到(B)
用骆驼表达这一点的最佳方式是什么?