Re: which method is better

2006-02-28 Thread Sony Thomas
Hi, Seding formbean to model is not a good idea. why cant you use Beanutils.copyproperties method to copy values from your form to model. sony vasumathi wrote: If you want to submit all the values to database, you can pass form ref. but in case of submitting one or two values to database, w

RE: which method is better

2006-02-28 Thread Shasirekha Engala
Subject: Re: which method is better If you want to submit all the values to database, you can pass form ref. but in case of submitting one or two values to database, what is the need of sending form ref, we can pass those values itself. > Hello, > > I usually have set and get method

Re: which method is better

2006-02-28 Thread vasumathi
If you want to submit all the values to database, you can pass form ref. but in case of submitting one or two values to database, what is the need of sending form ref, we can pass those values itself. > Hello, > > I usually have set and get methods for all properties in my Model class. > After s

Re: which method is better

2006-02-28 Thread Mark Lowe
n your form properties are the same as your business object properties. Mark > > regards, > vijay. > > > > -Original Message----- > > From: Oshima Tlholoe [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, February 28, 2006 2:53 PM > > To: Struts Users Mailing List &

Re: which method is better

2006-02-28 Thread Mark Lowe
ECTED] > > Sent: Tuesday, February 28, 2006 2:53 PM > > To: Struts Users Mailing List > > Subject: Re: which method is better > > > > > > With my rudimentary knowledge,I dont think its advisable for your Action > > classes to talk directly to your business l

Re: which method is better

2006-02-28 Thread Oshima Tlholoe
Message- > > From: Oshima Tlholoe [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, February 28, 2006 2:53 PM > > To: Struts Users Mailing List > > Subject: Re: which method is better > > > > > > With my rudimentary knowledge,I dont think its advisable for y

RE: which method is better

2006-02-28 Thread R.Vijayaraghavan
even know if there is any other technique we should follow as Oshima pointed it. regards, vijay. > -Original Message- > From: Oshima Tlholoe [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 28, 2006 2:53 PM > To: Struts Users Mailing List > Subject: Re: which method is be

RE: which method is better

2006-02-28 Thread R.Vijayaraghavan
, vijay. > -Original Message- > From: Oshima Tlholoe [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 28, 2006 2:53 PM > To: Struts Users Mailing List > Subject: Re: which method is better > > > With my rudimentary knowledge,I dont think its advisable for your

Re: which method is better

2006-02-28 Thread Oshima Tlholoe
With my rudimentary knowledge,I dont think its advisable for your Action classes to talk directly to your business layer/model classes, Why don't you have a business delegate/session facade or Service Locator sitting between your Action Classes and the model classes, this insulates your action clas