Excerpt | ||
---|---|---|
| ||
Struts ActionForms |
ActionForms can be stored in either the session (default) or request scope. If they're in the session it's important to implement the form's reset method to initialize the form before each use. ActionForms should be request based unless they are carried across more than one page, e.g. as in a page using search help. Need code example with reset method...
By definition, every ActionForm must be a subclass of org.apache.struts.action.ActionForm.
...