Struts2 でリンクボタンを作るには

提供: tknotebook
移動: 案内検索

メインページ>コンピュータの部屋#Java>Struts2 Tips


struts2 でリンクボタンを作るには以下のようにします。

例えば 名前空間=/UserList アクション=show に遷移するボタンを作るには

<s:url var="userlist_show_url" namespace="/UserList" action="show" />
<button type="button" onclick="location.href='${userlist_url}'">ボタンのキャプション</button>