Mulesoft Dataweave转换为MongoDB - 无法转换“com.mulesoft.weave.mule.WeaveMessageProcessor $ WeaveOutputHandler”

时间:2016-02-28 17:53:57

标签: java mongodb mule mule-component

我成功从Alfresco ECM实例中检索记录。当我尝试将它们推入MongoDb时,我得到以下内容:

无法从“com.mulesoft.weave.mule.WeaveMessageProcessor $ WeaveOutputHandler”转换为“org.bson.Document”(org.mule.api.transformer.TransformerException)。消息有效内容的类型为:WeaveMessageProcessor $ WeaveOutputHandler

我使用Dataweave将查询记录转换为Json,但我不确定为什么会这样。

这是我的流程:

<flow name="mongotestFlow">
    <http:listener config-ref="HTTP_Listener_Configuration" path="/add" doc:name="HTTP"/>
    <cmis:query config-ref="CMIS__Configuration" statement="SELECT cmis:objectId,cmis:name,cmis:contentStreamLength,cmis:creationDate,cmis:lastModifiedBy, cmis:lastModificationDate from cmis:document where cmis:createdBy &lt;&gt; 'System'" doc:name="CMIS"/>
         <dw:transform-message doc:name="Transform Message">
             <dw:set-payload><![CDATA[%dw 1.0
%output application/json
---
payload.properties map {
    "size": $.values[2][0]
}
]]></dw:set-payload>
         </dw:transform-message>
         <mongo:insert-document config-ref="Mongo_DB__Configuration" collection="testCollection" doc:name="Mongo DB" document-ref="#[message.payload]"/>
     </flow>

非常感谢任何帮助。

-S

1 个答案:

答案 0 :(得分:2)

在插入<mongo:json-to-dbobject doc:name="Mongo DB"/>

之前使用Mongo