I have been searching for a concrete answer for this, as much of google returns a lot of very old posts. Is this greetingActionForm
in the request scope, or in the session scope? Is there any location besides the action
and form-bean
declaration to determine a form's scope?
<action-mappings>
<action path="/hello/my/oldfriend"
type="com.imFine.HowAreYouAction"
name="greetingActionForm"
validate="true"
input="/the/front/door">
<forward name="success" path="/go/get/drinks.do" />
</action>
</action-mappings>
<form-beans>
<form-bean name="greetingActionForm" type="com.forms.GreetingActionForm"/>
</form-beans>