I'm having 3
jsp pages which are having similar fields (like text field '
My name' is present on all the 3 pages) & different fields too(I'm having text field '
company name' present on page 2 only). I'm trying to use single actionForm but the problem is i dont want data filled for '
My Name' field on page 1 to be displayed directly in the text field of page 2.
How to handle this ?
I'm using single actionForm so that the getter & setter methods will not be redundant.
Design is like this:
ActionForm same for all the 3 pages.
1 Action class(
controller), 1 bean class(
model), 1 DAO class for db queries for each Jsp page(
view).
Idea, of any better handling of actionForm is very much welcome.