Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The recipientList element of the Spring DSL can utilize a property expression like:

Wiki Markup
{snippet:id=e1|lang=xml|url=camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/recipientListWithStringDelimitedProperty.xml}
Code Block
languagexml

<route>
  <from uri="direct:a"/>
  <recipientList>
    <property>myProperty</property>
  </recipientList>    
</route>

In this case, the list of recipients are contained in the property 'myProperty'.

And the same example in Java DSL:

Wiki Markup
{snippet:id=example|lang=java|url=camel/trunk/camel-core/src/test/java/org/apache/camel/processor/RecipientListWithStringDelimitedPropertyTest.java}
Code Block
javajava

  from("direct:a").recipientList(property("myProperty"));

And with a slightly different syntax where you use the builder to the fullest (i.e. avoid using parameters but using stacked operations, notice that property is not a parameter but a stacked method call)

...