如何将过滤器用于JSON消息的多个参数

时间:2019-03-05 10:57:23

标签: wso2 wso2esb

我正在使用ESB-4.9.0版本。

基于两个过滤逻辑,必须继续执行ESB中介流。 JSON消息在中介流中转换。目前,我正在使用两个过滤器中介来实现此目的。 是否有可能使用单个过滤器中介来满足相同的情况?

输入JSON消息

{
  "filterId": "CorrectId",
  "approvalStatus": "approved",
  "lifeCycleStatus": "BRANCH_READY",
  "channelData": [
    {
      "status": "pending",
      "indexId": "correctIndexId",
      "description": "Test Description"
    }
  ]
}

使用过的ESB Synapse部分

<filter description="" regex="CorrectId" source="json-eval($.filterId)">
        <then>
           <filter description="" regex="correctIndexId" source="json-eval($.indexId)">
                <then>
                   <!-- continue the mediation flow-1-->
                </then>
                <else>
                    <!-- continue the mediation flow-2-->
                </else>
            </filter>
        </then>
        <else>
            <drop/>
        </else>
    </filter>

1 个答案:

答案 0 :(得分:1)

是的,这可以通过过滤器介体和xpath concat函数来实现:

<resource methods="POST" uri-template="/onefilter">
  <inSequence>
     <property name="filterId" expression="json-eval($.filterId)"/>
     <property name="correctIndexId" expression="json-eval($.channelData[0].indexId)"/>
     <property name="combinedID" expression="fn:concat($ctx:filterId, $ctx:correctIndexId)"/>
     <filter source="$ctx:combinedID" regex="CorrectIdcorrectIndexId">
        <then>
           <log level="custom">
              <property name="message" value="continue 1"/>
           </log>
           <drop/>
        </then>
        <else>
           <log level="custom">
              <property name="message" value="continue 2"/>
           </log>
           <drop/>
        </else>
     </filter>
  </inSequence>

由于您的JSON路径无效,因此您的代码段绝不会进入continue 1路由。