Routing to a different channels based on condition
问题 I would like to route the message to different channels based on the condition of the property. Let's say I have score property. If the score is <100 then it goes to "perfectchannel" else it goes to "normalchannel" Where do I specify the spel expression or condition <si:router id="serviceRouter" input-channel="serviceRoutingChannel" expression="payload.score" default-output-channel="badchannel" resolution-required="false"> <si:mapping value="100" channel="perfectchannel" /> <si:mapping value=