Re: [Transfer data from Form to business bean]

2006-03-16 Thread Oshima Tlholoe
Based on my rudimentary knowledge, you can do the folling, BeanUtils.copyProperties(urBusinessObject,form); in that way you'll be copying data from your ActionForm right into the business Object in a very convenient manner. I am also a junior developer still learning. On 3/16/06, Oshima Tlholoe <

Re: [Transfer data from Form to business bean]

2006-03-16 Thread Oshima Tlholoe
Based on my rudimentary knowledge, you can do the folling, BeanUtils.copy(form,urBusinessObject); in that way you'll be copying data from your ActionForm right into the business Object in a very convenient manner. I am also a junior developer still learning. On 3/16/06, Deva Pitchai(NatureSoft) <

Re: [Transfer data from Form to business bean]

2006-03-16 Thread Thomas Darimont
Hi, you could use the BeanUtils.copyProperties(...) http://jakarta.apache.org/commons/beanutils/ Methods to copy values from FormBean attributes into BOs attributes. (In order to do this, the attribute names have to correspond of course) Kind regards, Thomas > -Ursprüngliche Nachricht-