Hi All,
I am hoping to create a Form in an Action, populate it with information and forward to a
JSP. In struts-config we define the form to used with an Action and I beleive that
Struts RequestProcessor automatically creates a form bean based of the action mapping. I dont want the Request processor to create the form bean but want to create it an initialize it myself.
ActionForm form = new MyActionForm();
request.setAttribute("myActionForm", form);
I know the above can be done, but if my struts-config.xml defines the form, will a second instance of the form get created?
Thanks.