Let's say i have a struts-config.xml file, putting action tag only :
</action>
<action path="/import"
type="com.app.console.CSVAction"
scope="session"
name="formName"
input="/example.jsp"
validate="true">
<forward name="success" path="/myAction.do?subAction=import"/>
</action>
- What is the role of path attribute, will it call reset method of myAction also.
- What if i put redirect parameter to true.
I am asking this question because in my code.. the actionform is getting reset always(where all bean properties will be reset) corresponding to myAction.do, when i call the action myAction.do above.
Please provide the detailed explanation.