在 Struts 1.3 Action 类中,我们返回值为
return mapping.findForward("success");
如果该操作的操作标记中未定义“成功”会发生什么
<action path="/helloWorld"
type="com.action.HelloWorldAction"
name="helloWorldForm">
<forward name="good" path="/Good.jsp"/>
<forward name="bad" path="/Bad.jsp"/>
</action>