私はラクダの選択を書きました。ルートの入力はxmlです。以下に示す:入力としてjsonを使用して選択を記述したいので、jsonを評価して次のコンポーネントにルーティングする方法。よろしくお願いします。JSON は次のとおりです。
{
"service": { "serviceType": "OtherServcie" }
}
<choice>
<when>
<xpath>/service/serviceType='PaymentServcie'</xpath>
<log message="In PaymentServcie"/>
</when>
<otherwise>
<log message="In OtherServcie"/>
</otherwise>
</choice>