RE: ActionForms recycling - why?

2003-08-14 Thread Mainguy, Mike
If you set the form to request scope, a new one is created for each request and the problems you describe would not occur. -Original Message- From: Radek Wisniewski [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2003 10:17 AM To: [EMAIL PROTECTED] Subject: ActionForms recycling -

Re: ActionForms recycling - why?

2003-08-14 Thread Ted Husted
Struts doesn't recycle ActionForms per se. It just looks to see if a form (of the same scope, name, and type) is already there before instantiating a new one. After that, the usual gauntlet applies regardless. This approach simplifies using session-scoped ActionForms to implement wizards. You