0

在 Mule 3.3.1 中,如何增加名为“count”的入站属性的值并将其作为出站属性传递?

我试过了

<set-variable variableName="count" value="#[header:count?]"/>

<!-- SOME FLOW........
...... -->
<!-- Inside exception strategy -->
<message-properties-transformer> 
    <add-message-property key="count" value="#[variable:count + 1]" />
</message-properties-transformer>

但它与“表达式评估器“标题”错误,表达式“调用:计数 - 1”返回空值,但需要一个值”。

4

1 回答 1

3

使用 MEL:

<set-property propertyName="count"
              value="#[message.inboundProperties.count + 1]" />
于 2013-09-11T22:27:56.787 回答