A custom converter is probably the easiest way to handle it.
On Wed, 16 Mar 2005 19:35:41 +0530, Vinod Singh <[EMAIL PROTECTED]> wrote:
> Hi All,
>
> What is the best way to deal with nested beans? For example a User belongs
> to Group so User bean will have an association with Group bean. The ui form
> for User creation will have an select option for Group ID. Now I want to
> map this select tag to group field of User bean, do I have create a custoom
> converter o some other approach is there?
>
> Thanks,
>
> Vinod
>
> public class User
> {
> private String name;
> private Group group;
> }
>
> public class Group
> {
> private String name;
> private List<User> users;
> }
>
>
--
-Heath Borders-Wing
[EMAIL PROTECTED]