10. Strutsの場合 <html:form action=”/act1”> <html:submit value=”act1”/> </html:form> <html:form action=”/act2”> <html:submit value=”act2”/> </html:form> JSP Act1Action Act1Form Act2Form Act2Action <struts-config> <form-beans> <form-bean name=”act1Form”/> <form-bena name=”act2Form”/> </form-beans> <action-mappings> <action path=”act1”/> <action path=”act2”/> </action-mappings> </struts-config> struts-