使用 enrich mediator 将新元素动态添加到 WSO2 EI 中的 json payload

Dynamically add new element to json payload in WSO2 EI by using enrich mediator

我需要使用动态传递给现有有效载荷而不是静态值的新元素来丰富现有 json 有效载荷。谁能帮帮我?

现有负载:

{
  "Type":"CAR",
  "Identifier":"2db23c39-9d3f-4e61-b3c5-e8725a2f1b90",
  "ListingType":"New",
  "SaleStatus":"For Sale"
}

预期:

{
  "Type":"CAR",
  "Identifier":"2db23c39-9d3f-4e61-b3c5-e8725a2f1b90",
  "ListingType":"New",
  "SaleStatus":"For Sale",
  "messageId":"urn:uuid:ccdafb72-c4"
}

这里的messageId是ESB自动生成的MessageID。

 <!-- ************API Request set to incomingRequest property************ -->
 <property description="incomingRequest" expression="json-eval($.)" name="incomingRequest" 
 scope="default" type="STRING"/>
<payloadFactory media-type="json">
    <format></format>
    <args>
        <arg evaluator="xml" expression="get-property('incomingRequest')"/>
    </args>
</payloadFactory>
<enrich description="">
    <source type="inline" clone="true">
        <messageId xmlns="">evaluate(get-property('operation','messageId')) 
  </messageId>
    </source>
    <target action="child" xpath="//jsonObject" />
</enrich>
<enrich>
    <source clone="true" xpath="//jsonObject" />
    <target type="body" />
</enrich>
 <log level="full"/>

**Getting Wrong output** 

{
  "Type":"CAR",
  "Identifier":"2db23c39-9d3f-4e61-b3c5-e8725a2f1b90",
  "ListingType":"New",
  "SaleStatus":"For Sale",
  "messageId": "evaluate(get-property('operation','messageId'))"
}

注: 我关注了this

不评估 enrich mediator 上的内联内容。 (视为字符串) 因此,我们可以使用 属性 中介来评估表达式。

<property name="prop1" expression="get-property('operation','messageId')"/>

然后我们就可以在enrich mediator中使用上面的属性

<enrich description="">
    <source type="property" property="prop1"></source>
    <target action="child" xpath="//jsonObject" />
</enrich>

顺便说一句,在最新的产品版本中,Enrich 介体具有本机 JSON 支持。 Here

中有更多详细信息

我有类似的情况,我想将一些元素附加到收到的 json 响应中:

  • 首先我将收到的回复发送到 属性: 属性 expression="json-eval($)" name="RESPONSE" scope="default" 类型="字符串"

  • 然后我创建了一个负载并添加了新属性:

 <payloadFactory media-type="json">
                           <format>
                                {"details": ,
                                "timestamp":"",
                                "value":""}
                            </format>
                            <args>
                                <arg evaluator="xml"
                                    expression="get-property('RESPONSE')" />
                                <arg evaluator="xml"
                                    expression="get-property('REQUEST_TIMESTAMP')" />
                                <arg evaluator="xml"
                                    expression="get-property('VALUE')" />
                            </args>
                        </payloadFactory>

然后我使用环回返回响应。请注意,REQUEST_TIMESTAMP 和 VALUE 被定义为属性。