「struts2」ラジオ(s:radio)タグを利用する方法

操作方法
1.StaffBeanクラスの定義
使用例

public class StaffBean {

   protected String delFlg ="";

 	public String getDelFlg() {
            return delFlg;
      }

      public void setDelFlg(String delFlg) {
            this.delFlg = delFlg;
      }
      
}

2. Actionクラス側
StaffBean staffBean = xxxx;
//staffBeanについて処理 中略
3.JSPコード
<s:radio name="staffBean.delFlg" label="staffBean.delFlg" list="%{'1’}" listValue="getText('削除権限あり’)" />
<s:radio name="staffBean.delFlg" label="staffBean.delFlg" list="%{'0’}" listValue="getText('削除権限ない’)" />

 

Struts2

Posted by arkgame