How do I handle multiple actions in single form in WILDCARD action mapping?
问题 According this solution Struts2 handle multiple actions... I know the Struts2 DMI can handle multiple acitons in single form easily. Recently, Struts2 turned off DMI mechanism for security issue. Now, we use WILDCARD MAPPINGS to map all actions in struts.xml example: <action name="*/*" class="action.{1}Action" method="{2}"> ... </action> In WILDARD MAPPINGS, it has a little problem to deal with mapping multiple actions/methods in single form. <s:form action="actionA/method2" theme="simple" >