68.2. 例
recipientList EIP は、以下のような exchangeProperty を使用できます。
<route>
<from uri="direct:a" />
<recipientList>
<exchangeProperty>myProperty</exchangeProperty>
</recipientList>
</route>
この場合、受信者の一覧は 'myProperty' プロパティーに含まれます。
Java DSL でも同じ例になります。
from("direct:a").recipientList(exchangeProperty("myProperty"));