我有一个下面的pojo表单bean类:

class A{

int role;
List<String> roleList;
List<B> menuList;
public setMenuList(List<B> menuList)
{
    this.menuList=menuList;
}
}


我的menuList是B类型的,因此下面是第二个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的setter和getter。

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包含列表menuList作为属性。.在jsp中,我从menuList进行迭代,并取决于B中布尔值var的状态,我正在设置复选框

     <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...。我认为List的类型为B,这就是为什么它显示为null ..其未获得B ...或menuList的原因内部bean没有设置。
如何解决这个问题呢..

最佳答案

好的,有很多事情要考虑:


请不要混入GUI(struts2标签和jstl)
根据操作预期,该名称是错误的。


<s:checkbox name="b.viewCheckBox" id="v_%{menuKey}" fieldValue="b.viewCheckBox" value="#attr.b.viewCheckBox" disabled="true" />

如果您有一个二传手,上述方法将起作用

private B b;

但是您正在使用List<B> menuList;的设置器,因此复选框的名称应为

<s:checkbox name="menuList[0].viewCheckBox" id="v_%{menuKey}" fieldValue="menuList[0].viewCheckBox" value="#attr.b.viewCheckBox" disabled="true" />

09-29 22:45