dispatcher
当我在 Struts 2 中使用结果时,我没有收到操作错误。
在动作类中,以下代码用于添加错误消息。
addActionError("Error");
return "Failure";
在 Struts 配置中:
...
<result name="Failure" type="dispatcher">/ShowError.do</result>
...
<action name="ShowError">
<result>/jsp/ShowActionErrror.jsp</result>
</action>
在ShowActionErrror.jsp
:
<div class="error"><s:actionerror /></div>
但是,我没有收到操作错误消息ShowActionErrror.jsp
?