Strutsリファレンス(逆引き)

Strutsリファレンス
 
Web struts.wasureppoi.com
アクションをチェーンさせる
スポンサード リンク

アクションクラスを実行した後、JSPに遷移する他に、別のアクションを実行することもできます。

struts-configのアクション定義
(URLに「http://ホスト名/アプリケーション名/do/simple_view」が来た場合のアクション定義)

<action-mappings>

   <action path="/simple_view"
       type="sample.ac.SimpleAction"
       name="SimpleForm"
       scope="session"
       validate="true"
       input="/jsp/ac/simple_input.jsp">
       <forward
         name="success"
         path="/jsp/ac/simple_view.jsp"
         redirect="false" />
       <forward
         name="change"
         path="/do/simple_change_view"/>
  </action>

  <action path="/simple_change_view"
       type="sample.ac.SimpleChangeAction"
       name="SimpleForm"
       scope="session" >
       <forward
          name="success"
          path="/jsp/ac/simple_change_view.jsp" />
</action>

</action-mappings>

アクションパス「simple_view」で、アクションクラス「sample.ac.SimpleAction」の実効結果が「change」の場合
アクションパス「/do/simple_change_view」を呼び出してアクションクラス「sample.ac.SimpleChangeAction」実行する。

スポンサード リンク

アクションの種類
アクション(Action)
フォーム内の複数のボタンからsubmitする(DispatchAction)
フォーム内の複数のボタンからsubmitする(LookupDispatchAction)
複数のメソッドを1つのアクションクラスにまとめる(MappingDispatchAction)
既存のサーブレットをStrutsに組み込む(IncludeAction)
リクエストを転送する(ForwardAction)
リクエストを転送する(Forward属性)
アクションをチェーンさせる
異なるモジュールのアクションを呼び出す(SwitchAction)
デフォルトアクションを定義する(unknown属性)
画面遷移を制御する(TransactionToken)
指定したパラメータをアクションに渡す(parameter)
動的なリクエストパラメータを指定してリダイレクトする(RedirectingActionForward)
共通の遷移先を定義する(global-forward)
SSLで通信する(org.apache.struts.action.SecurePlugIn)
エラーメッセージを保存する(saveErrors())
メッセージを保存する(saveMessages())
ユーザー作成オブジェクトをJSPに受け渡す(request)
アクション間でユーザー作成オブジェクトを受け渡す(session)

アクションへ
忘れっぽいエンジニアのJakarta Strutsリファレンス TOPへ