Available as of Camel version 2.0
The ExchangeProperty Expression Language allows you to extract values of named exchange properties.
The ExchangeProperty language supports 1 options which are listed below.
Name | Default | Java Type | Description |
---|---|---|---|
trim |
|
|
Whether to trim the value to remove leading and trailing whitespaces and line breaks |
The recipientList element of the Spring DSL can utilize a exchangeProperty expression like:
In this case, the list of recipients are contained in the property 'myProperty'.
<route>
<from uri="direct:a" />
<recipientList>
<exchangeProperty>myProperty</exchangeProperty>
</recipientList>
</route>
And the same example in Java DSL:
from("direct:a").recipientList(exchangeProperty("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 exchangeProperty is not a parameter but a stacked method call)
from("direct:a").recipientList().exchangeProperty("myProperty");
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。