可以的,只不过你不用在写成这样:
 return actionMapping.findForward("loginAction.do?method=方法名");
你只要写:
 return actionMapping.findForward("anotherMethod");
然后再相应的ActionMapping中定义一个Forward:
<forward name="anotherMethod" path="/anotherMethodAction.do?parmID=anotherMethod" redirect="true"/>
就可以了。