我有以下流程:
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:json="http://www.mulesoft.org/schema/mule/json" xmlns:db="http://www.mulesoft.org/schema/mule/db" xmlns:tracking="http://www.mulesoft.org/schema/mule/ee/tracking" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
xmlns:spring="http://www.springframework.org/schema/beans" version="EE-3.5.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/db http://www.mulesoft.org/schema/mule/db/current/mule-db.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/ee/tracking http://www.mulesoft.org/schema/mule/ee/tracking/current/mule-tracking-ee.xsd
http://www.mulesoft.org/schema/mule/json http://www.mulesoft.org/schema/mule/json/current/mule-json.xsd">
<db:generic-config name="Generic_Database_Configuration" url="jdbc:db2://localhost:50000/TEST:user=instuid;password=instpw;" driverClassName="com.ibm.db2.jcc.DB2Driver" doc:name="Generic Database Configuration"/>
<flow name="test2Flow1" doc:name="test2Flow1">
<http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" doc:name="HTTP"/>
<db:select config-ref="Generic_Database_Configuration" doc:name="Database" doc:description="test">
<db:parameterized-query><![CDATA[SELECT SUM(BAL) FROM xxxx.ACCT]]></db:parameterized-query>
</db:select>
<json:object-to-json-transformer doc:name="Object to JSON"/>
</flow>
</mule>
流程很好,正如您所看到的,JSON对象将Database对象转换为以下内容: (带有单个对象的JSON arry):
[{"1":444}]
请注意,444是一个数值(它周围没有引号)。
我想做什么
创建一个没有数组的简单JSON结构
将444从数值更改为字符串值
让它看起来像:(将444放入另一个结构中)
{&#34; Total&#34; :&#34; 444&#34;,&#34;日期&#34; :&#34; 14/07/14&#34; }
我知道要获得系统日期,我会执行以下操作:
#[server.dateTime.format('dd/MM/yy')]
...我知道从原始字符串中获取444值,我执行了以下操作:
$..1
但我不知道接下来该做什么。
现在我使用JSON对象来查看数据库连接器的结果,接下来我要做什么对象来创建新结构。
我是否使用另一个JSON对象,我将如何构造表达式?
答案 0 :(得分:2)
要将所有数字写为字符串,您可以在Jackson对象映射器上设置它并从变换器引用该自定义对象映射器:
<spring:beans>
<spring:bean id="jacksonObjectMapper" class="org.codehaus.jackson.map.ObjectMapper" />
<spring:bean
class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
<spring:property name="targetObject" ref="jacksonObjectMapper" />
<spring:property name="targetMethod" value="configure" />
<spring:property name="arguments">
<spring:list>
<spring:value>WRITE_NUMBERS_AS_STRINGS</spring:value>
<spring:value>true</spring:value>
</spring:list>
</spring:property>
</spring:bean>
</spring:beans>
<flow name="flow1" doc:name="flow1">
...
<json:object-to-json-transformer mapper-ref="jacksonObjectMapper" />
...
</flow>
然而,这将为所有数字字段添加点。您可能必须为特定行为编写自定义序列化程序。
至于展开数组。不确定你是否可以通过jackson版mule使用的对象映射器来完成此操作。但是对于这种情况,如果你总是从查询中得到一个结果 - 你可能只是在json变换器之前展开数组
<set-payload value="#[payload[0]]">
<json:object-to-json-transformer mapper-ref="jacksonObjectMapper" />
答案 1 :(得分:0)
一种简单的方法是使用Mule&#39; docs 您需要从JSON数组中提取值并将其存储到以下变量中: -
<json:json-to-object-transformer returnClass="java.util.List" doc:name="JSON to Object" />
<set-variable variableName="Total" value="#[message.payload[0].1]" doc:name="Variable" />
现在,您的变量总计将包含值444
下一步是将日期存储到其他变量中,如下所示: -
<set-variable variableName="Date" value="#[server.dateTime.format('dd/MM/yy')]" doc:name="Variable" />
现在,如果完成这两个步骤,那么您可以使用Expression Transformer以非常简单的方式创建所需的 JSON ,如下所示: -
<expression-transformer
expression="#[[
'Total': flowVars['Total'].toString(),
'Date': flowVars['Date']
]]" doc:name="Expression" />
<json:object-to-json-transformer doc:name="Object to JSON" />
这将生成并构建您所需的JSON: - {"Date":"12/08/15","Total":"444"}
以非常简单的方式