Very basic question on formbeans

2006-11-22 Thread Gallagher, Jim (RBoS ITDS Dublin)
Hi, I've designed written a couple of struts applications up to now, and recently the solution to a problem has caused me to wonder if I'm making a fundamental error in the way I've been doing it. Up to now, when designing a jsp I've only used the formbean to collect the

Re: Very basic question on formbeans

2006-11-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jim, Gallagher, Jim (RBoS ITDS Dublin) wrote: I'm wondering whether it's a better idea to create the formbean, populate it and use that to pass the information to the jsp? This really is the struts way. But, in order to do this, you don't have to

Re: Very basic question on formbeans

2006-11-22 Thread Albert L Sapp
Jim, Basically, that is how our application is set up. There are transfer object beans that handle the movement between our controller layer and model and form beans for moving data between the view and controller layer. Sometimes, the TO and form bean may be exact matches and other times

RE: Very basic question on formbeans

2006-11-22 Thread Dave Newton
From: Gallagher, Jim (RBoS ITDS Dublin) Up to now, when designing a jsp I've only used the formbean to collect the information entered, rather than to pass it to the jsp in the first place. I'm wondering whether it's a better idea to create the formbean, populate it and use that to pass the