| Author |
Many action share form bean
|
amit sharma
Ranch Hand
Joined: Jul 19, 2006
Posts: 129
|
|
I want to know what are the different ways of using same form bean in many actions and what are the limitations ,advantages ,disadvantages of using this method. Thanks
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
The only time I'd recommend using the same form bean for multiple actions is if you're building a "wizard" where the user enters information through multiple pages and does a "save" operation when finished. One big disadvantage to using a single form bean for multiple actions is that it makes it much more difficult to validate data, either with your own code or using the Validation Framework. Besides that, there's just the general awkwardness of having a lot of extra properties in the form that you don't need for the current page.
|
Merrill
Consultant, Sima Solutions
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: Many action share form bean
|
|
|