将自定义对象返回到骡子流时我做错了什么?如何返回可被另一个骡子流消耗的对象?

时间:2014-11-26 23:49:20

标签: java mule mule-el

这是我在流程中所做的事情:

<?xml version="1.0" encoding="UTF-8"?>

<mule 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.6.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/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd">
    <spring:beans>
        <spring:bean id="JavaMule" class="com.intuit.platform.fdp.transaction.orchestration.JavaMule"/>
    </spring:beans>
    <flow name="javaflowFlow1" doc:name="javaflowFlow1">
        <http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="9090" path="java" doc:name="HTTP"/>

        <component class="com.intuit.platform.fdp.transaction.orchestration.JavaMule" doc:name="Java">

        </component>
        <set-payload value="#['This is my clientcontext'+ '13424234']" doc:name="Set Payload"/>
       <invoke object-ref="JavaMule"
        method="myMethod"
        methodArguments="#[payload]" doc:name="Invoke"/>
        <object-to-string-transformer doc:name="Object to String" returnClass="com.intuit.platform.fdp.transaction.orchestration.DummyPojo"/>
        <echo-component doc:name="Echo"/>
    </flow>
</mule>

这是myMethod的代码。

   public DummyPojo myMethod(String payload) throws IOException {
        // do things with payload.

        DummyPojo pojo = new DummyPojo();
        pojo.setCode(0);
        pojo.setDesc(payload);
        return pojo;
    }

DummyPojo的代码。

public class DummyPojo {

    private int code;
    private String desc;

    public int getCode() {
        return code;
    }

    public String getDesc() {
        return desc;
    }


    public void setCode(int code) {
        this.code = code;
    }


    public void setDesc(String desc) {
        this.desc = desc;
    } 
}

然而,当我运行流程时,我收到以下错误。

The object transformed is of type: "SimpleDataType{type=java.lang.String, mimeType='*/*'}", but the expected return type is "SimpleDataType{type=com.test.DummyPojo, mimeType='text/plain'}" (org.mule.api.transformer.TransformerException). Message payload is of type: DummyPojo

关于我在流程中做错了什么的任何想法?我试图返回自定义对象而不是字符串。

编辑:

我试图让我创建的对象(DummyPojo)可供另一个mule流使用。 IE浏览器。例如,子流B由于其操作而产生DummyPojo。如何/我从B返回什么,以便A可以使用返回的对象

2 个答案:

答案 0 :(得分:1)

您正在调用object-to-string-transformer,它始终返回String,但要求它返回自定义对象:

<object-to-string-transformer doc:name="Object to String" returnClass="com.intuit.platform.fdp.transaction.orchestration.DummyPojo"/>

这不起作用,你会看到你看到的错误。如果您不想要字符串,请删除此变换器。

答案 1 :(得分:1)

这里有很多事情并不完全正确:

你有两次实例化的同一个类:com.intuit.platform.fdp.transaction.orchestration.JavaMule。

连续两次调用,一次使用组件,一次使用调用。如果JavaMule只有一个带有单个参数String signature的方法,那么我将保留组件并删除invoke。

正如Ryan所说,串变换器的对象不正确。此外,它可能不是你打算做的。在你的问题中,你提到你想要返回一个对象,如果这实际上是你的意图,只需完全删除对象到字符串变换器。如果你想以某种方式序列化对象,只需将xstream的对象用于xml转换器或将对象用于bytearray转换器。

如果你对echo-component的意图是记录有效负载,你应该使用logger元素:<logger messsage="#[message.payload]" /> echo-component是一个不推荐使用的mule 2组件将入站属性复制到出站的效果。

修改

要拥有一个可以从其他流程中调用的可重用流程,您明确无需执行任何操作,只需使用flow-ref调用该流程:

<flow-ref name="javaflowFlow1" />

这将忽略inbound-endpoint(无论如何你可能不需要问题流程。)

有关此主题的更多信息,您有documentationMule Cloud connectMule in action入门。