如何将字符串与mule表达式返回的值连接起来?

如何将字符串与mule表达式返回的值连接起来?,mule,mule-el,Mule,Mule El,我正在尝试下面的方法来连接字符串和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']]"/>

我正在尝试下面的方法来连接字符串和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> 

我也尝试过其他的变体,但运气不好。如果需要的话,我很乐意发布变体。

尝试并使用:
['Key'+message.inboundProperties['http.query.params']['value']
尝试并使用:
['Key'+message.inboundProperties['http.query.params']['value']