如何对JSON消息的多个参数使用过滤器

问题描述 投票:1回答:1

我正在使用ESB-4.9.0版本。

必须基于两个过滤逻辑继续ESB中介流。 JSON消息在中介流中转换。目前,我正在使用两个Filter调解器来实现这一目标。是否有可能使用单个过滤介体来实现相同的方案?

输入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>
wso2 wso2esb
1个回答
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>

顺便说一句,您的代码片段永远不会进入continue 1路由,因为您的JSON路径无效。

© www.soinside.com 2019 - 2024. All rights reserved.