Returns the form bean associated with this action mapping.
This is a convenience method. The form bean is automatically
available in the Velocity context under the name defined in the
Struts configuration.
If the form bean is used repeatedly, it is recommended to create a
local variable referencing the bean rather than calling getBean()
multiple times.
Example:
#set ($defaults = $form.bean)
<input type="text" name="username" value="$defaults.username">
the ActionForm associated with this request ornull if there is no form bean associated with this mapping |