I have a form bean which has one setter method. This bean is associated with a jsp. Now i define this bean in my struts-config.xml file under the <form-beans></form-beans> tags. I DO NOT use the name attribute of the actions-mapping to associate the bean with my action class. Now my question are: 1) Will the reset,setter methods of the form bean be called? 2) Will the form bean be null in my action class?
I dont want to put the name attribute. My question is( given the conditions mentioned in my above post ) 1) Will the setters be called? 2) Will the form bean be null in the action?