Excerpt | ||
---|---|---|
| ||
controller classes |
There are two kinds of controller classes, Actions, found in the action directory, and ActionForms found in the data directory.
Struts Actions provide a glue betweedn the View and Model layers and are responsible for processing specific requests. Struts Actions should always extend org.apache.struts.action.Action�.
Struts ActionForms should always extend org.apache.struts.action.ActionForm�.
...