Abdullah,
Why do you want to use Arrays[]? Lists are better because they can grow
and can always be converted into an array.
-Richard
Abdullah Kauchali wrote:
Hi Larry,
Yup, I can do that. But how can I make iBatis' internal 1:M feature
populate arrays of POJO's instead of java.util.List?
What's the best way of doing that?
Regards,
A
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Larry Meadors
Sent: Saturday, October 07, 2006 7:12 PM
To: [email protected]
Subject: Re: Arrays instead of java.util.List?
Nope, but you can do this easy enough:
return (YourType[])queryForList("blah.query", parms).toArray(new
YourType[0]);
Larry
On 10/7/06, Abdullah Kauchali <[EMAIL PROTECTED]> wrote:
Abdullah Kauchali:
I have a complex type as a Java Bean that I'd like to populate using
the
1:M
ibatis facility and I cannot serialize a java.util.List - only array
of
objects.
Complex type as in a web services complex type.