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 respostas
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.