DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
The recipientList element of the Spring DSL can utilize an exchangeProperty expression. In this example, the list of recipients are contained in the property myProperty.
| Code Block | ||
|---|---|---|
| ||
<route>
<from uri="direct:a"/>
<recipientList>
<exchangeProperty>myProperty</exchangeProperty>
</recipientList>
</route> |
...
And the same example in Java DSL:
| Code Block | ||
|---|---|---|
| ||
from("direct:a")
.recipientList(exchangeProperty("myProperty")); |
...