まにょのITメモ
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
<action-mappings>
<action path="/login" type="org.springframework.web.struts.DelegatingActionProxy" name="loginForm" input="/pages/login.jsp" scope="session">
<forward name="success" path="/showCom.do"></forward>
<forward name="fail" path="/pages/login.jsp"></forward>
</action>
</action-mappings>
forward pathのところに遷移画面のjspを書くのではなくて
"/showCom.do"
のように アクション名.do と書くと
successしたあとに、指定したアクションを実行する
<action path="/login" type="org.springframework.web.struts.DelegatingActionProxy" name="loginForm" input="/pages/login.jsp" scope="session">
<forward name="success" path="/showCom.do"></forward>
<forward name="fail" path="/pages/login.jsp"></forward>
</action>
</action-mappings>
forward pathのところに遷移画面のjspを書くのではなくて
"/showCom.do"
のように アクション名.do と書くと
successしたあとに、指定したアクションを実行する
PR
この記事にコメントする