使用WSO2类中介转换JSON主体

时间:2015-05-18 06:12:26

标签: java json wso2 wso2esb

以下是我当前json主体的日志。我想为这个机构增加新的属性。 "NewPropertyName": "value"。由于值在数据库中,因此我使用类中介来添加此属性。

[2015-05-18 05:47:08,730]  INFO - LogMediator To: /a/create-project, MessageID: urn:uuid:b7b6efa6-5fff-49be-a94a-320cee1d4406, Direction: request, _______BODY_______ = 
{
  "token": "abc123",
  "usertype":"ext",
  "request": "create"
}

班级调解员的中介方法,

public boolean mediate(MessageContext mc) {
        mc.setProperty("key", "vale retrived from db");
        return true;
}

但这不符合我的预期。我找不到任何使用类介体向json体添加属性的指南,请帮忙。

2 个答案:

答案 0 :(得分:6)

要向身体注入属性,您必须使用以下代码段

JsonUtil.newJsonPayload(
            ((Axis2MessageContext) context).getAxis2MessageContext(),
            transformedJson, true, true);

在班级调解员中。以下是中介方法的一个例子。

/**
 * Mediate overridden method to set the token property.
 */@Override
public boolean mediate(MessageContext context) {
try {

    // Getting the json payload to string
    String jsonPayloadToString = JsonUtil.jsonPayloadToString(((Axis2MessageContext) context)
        .getAxis2MessageContext());
    // Make a json object
    JSONObject jsonBody = new JSONObject(jsonPayloadToString);

    // Adding the name:nameParam.
    jsonBody.put("name", getNameParam());

    String transformedJson = jsonBody.toString();

    // Setting the new json payload.
    JsonUtil.newJsonPayload(
    ((Axis2MessageContext) context).getAxis2MessageContext(),
    transformedJson, true, true);

    System.out.println("Transformed JSON body:\n" + transformedJson);

} catch (Exception e) {
    System.err.println("Error occurred: " + e);
    return false;
}

return true;
}

你需要json和其他库。以下博客文章对此进行了详细解释。

json-support-for-wso2-esb-class-mediator

答案 1 :(得分:0)

mc.setProperty用于创建新属性,就像使用属性介体一样。

如果要在消息中添加新元素,在java中,您可以像处理XML消息一样处理它(例如,获取第一个元素:
OMElement element = (OMElement) context.getEnvelope().getBody().getFirstOMChild();

使用javascript添加新元素的示例:

<script language="js"><![CDATA[
    var payloadXML = mc.getPayloadXML();
    payloadXML.appendChild(new XML(<NewPropertyName>value</NewPropertyName>));
    mc.setPayloadXML(payloadXML);
]]></script>

使用<log level="full">以XML格式记录消息,然后获得:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
  <soapenv:Body>
    <jsonObject>
      <token>abc123</token>
      <usertype>ext</usertype>
      <request>create</request>
      <NewPropertyName>value</NewPropertyName>
    </jsonObject>
  </soapenv:Body>
</soapenv:Envelope>

使用

以JSON格式记录消息
<log>
  <property name="JSON-Payload" expression="json-eval($.)"/>
</log> 

你得到: JSON-Payload = {"token":"abc123","usertype":"ext","request":"create","NewPropertyName":"value"}