Skip to main content

Hi all,

I have data weave who's input is Jason array as below

{

"Customernumbers":

[

"12345678",

"5679940",

"54422678" ]

}

 

Now I have a Java class in which there is customno list of string member variable is available.

 

I want to to have output as below after transformation

 

Customerno[0] = 12345678

Customerno[1] = 5679940

.....

So on..

Please help on this...

답변 2개
  1. 2016년 7월 7일 오후 5:45

    Got the answer.. I was trying to transform data from Jason array to employee type list which was not happening. So I have to write down Java class n do transformation.

0/9000