私は次のpojoフォームBeanクラスを持っています:-
class A{
int role;
List<String> roleList;
List<B> menuList;
public setMenuList(List<B> menuList)
{
this.menuList=menuList;
}
}
私のmenuListはタイプBなので、以下は2番目のpojoクラスBです:-
class B{
private String displayName;
private boolean viewCheckBox;
private boolean addCheckBox;
private boolean editCheckBox;
private boolean deleteCheckBox;
private boolean downloadCheckBox;
private String menuKey;
private int menuActionFlag;
private int menuId;
private int menuActive;
private int menuLevel;
// setter and getters
}
私のアクションクラスでは、クラスAのオブジェクトを作成し、Aのセッターとゲッターを呼び出しています.
public class MenuAction
{
A a=new A();
//getter and setter of A
public list getAllMenus(){
// populating menuList from the database
}
public String save()
{
a=getA();
System.out.println("In Save"+a);
List<B> list=a.getMenuList();
System.out.println("MenuList is"+ list); // ** here i should get the menuList from jsp but its returning Null**
// code to save the changes into database
}
}
私のjspは、多くのチェックボックスを含む表形式のフォームを表示しています。チェックボックスの状態はクラスBにあり、クラスAにはList menuListが属性として含まれています。jspでは、menuListから繰り返し、Bのブール変数のステータスに応じて設定していますチェックボックス..
<c:forEach var="b" items="${a.menuList}"varStatus="status">
<c:if test="${b.getMenuLevel()==2}">
<tr>
<td align="center">
<c:out value="${b.isViewCheckBox()}"></c:out>
<c:choose>
<c:when test="${b.isViewCheckBox()}">
<c:out value="${b.isViewCheckBox()}"></c:out>
<p>
<s:checkbox name="b.viewCheckBox" id="v_%{menuKey}" fieldValue="b.viewCheckBox" value="#attr.b.viewCheckBox"/>
</p>
</c:when>
<c:otherwise>
<p><s:checkbox name="b.viewCheckBox" id="v_%{menuKey}" fieldValue="b.viewCheckBox" value="#attr.b.viewCheckBox"
disabled="true" /> </p> </c:otherwise>
保存をクリックしている間、menuListをnullとして取得しているアクションクラスのsaveメソッドに移動します....リストはタイプBであると思うので、nullを表示しています..Bを取得していない...または多分menuList内部ビーンが設定されていません..この問題を解決する方法..