How to pass Java object to a Java function in mule

醉酒当歌 提交于 2020-01-14 03:41:13

问题


I am trying to invoke a java function in mule.I converted the payload into the Object and passed it in the function. The name of the Java object created is req. The method validate accepts a Java Object Of type Example

public HashMap<String, String> validate(Example req) {.......}

Example class looks like this:

Class Example{
String key1;
String key2;
String key3;
}

XML configuration looks like this :

<java:new constructor="Example(java.lang.String,java.lang.String,java.lang.String)" doc:name="New Example" doc:id="6a1d5c8c-a1f0-446e-ab49-99a21fbbf4b9" class="Entities.Example" target="req">
                <java:args ><![CDATA[#[{key1 :payload.key1,key2: payload.key2, key3:payload.key3}]]]></java:args>
            </java:new>
            <java:invoke doc:name="Invoke" doc:id="dd5f6534-06c8-4f4d-b3aa-c634a629898e" class="Implementations.ValidationServiceImpl" instance="#[vars.validator]" method="validate(Entities.Example)">
        <java:args ><![CDATA[#[vars.req]]]></java:args>
    </java:invoke>

I get the following error:

I don't know why is it not passing the java object as a whole.


回答1:


Please try with this and see. If it works for you please let me know. We need to improve the mule documentation in this case

<java:args >#[{req: vars.req}]</java:args>


来源:https://stackoverflow.com/questions/59558707/how-to-pass-java-object-to-a-java-function-in-mule

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!