我尝试使用以下内容来连接字符串和从mule表达式返回的值
<message-properties-transformer scope="session" doc:name="Set value as SessionVar">
<add-message-property key="someKeyName" value="'Key ' + #[message.inboundProperties['http.query.params']['value']]"/>
</message-properties-transformer>
我也尝试过其他变种,但没有运气。如果需要,我会愉快地发布变体。
答案 0 :(得分:4)
尝试并使用:#['Key ' + message.inboundProperties['http.query.params']['value']]