<action-mappings>
<!-- アクション名称:入力画面パス-->
<action path="/sample_input"
forward="SAMPLE_INPUT" />
<!-- アクション名称:入力確認画面パス -->
<action path="/sample_check"
type="sample.action.SampleInputCheckAction"
name="SampleInputForm"
scope="session"
validate="true"
input="SAMPLE_INPUT">
<!-- 入力確認画面へ遷移する -->
<forward name="success" path="SAMPLE_CONFIRM" />
<!-- 入力画面に戻る -->
<forward name="error" path="SAMPLE_INPUT" />
</action>
</action-mappings>
|