You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by "Bailey, Shane C." <SH...@saic.com> on 2003/06/11 03:18:16 UTC

BeanUtils not working

 

I have a DynaBean and a java object and I wanted to copy the attributes.

 

First I tried BeanUtils.copyProperties(userObject, form.getMap());

 

And when that didn't work I looked up in the archive and found this:

http://marc.theaimsgroup.com/?t=104807934600003
<http://marc.theaimsgroup.com/?t=104807934600003&r=1&w=2> &r=1&w=2

 

which says to do BeanUtils.copyProperties(userObject, form);

 

Still didn't work.

 

There is not an exception thrown or anything my values are just still null
in the java object.

 

Any ideas??