65.2. 예제
recipientList
EIP는 다음과 같은 exchangeProperty를 사용할 수 있습니다.
<route> <from uri="direct:a" /> <recipientList> <exchangeProperty>myProperty</exchangeProperty> </recipientList> </route>
이 경우 수신자 목록은 'myProperty' 속성에 포함됩니다.
Java DSL의 동일한 예는 다음과 같습니다.
from("direct:a").recipientList(exchangeProperty("myProperty"));