简体   繁体   中英

How to pass Java object to a Java function in mule

在此处输入图片说明

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.

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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM