Just to confirm from experts. I am new in Struts environment and trying to put my head into it. I assume the following.
If I have 5 input JSP forms then �
I can have 5 separate Action Form Beans (one for each form), having only getXXX() and setXXX() without implementing any business logic.
OR
I can have only single Action Form Bean for all the 5 forms.
If my one form contains 3 different actions such as Send / Cancel / Reset then I will have three action classes (One action class per each action). Every action class will have an execute() , which will return me an object of ActionForward class.
Am I going in the direction ?
- Julie