0

我有一个以下 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类包含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 ......我认为 List 是 B 类型,这就是它显示 null 的原因......里面的bean没有设置..如何解决这个问题..

4

1 回答 1

2

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

  1. 请不要在 GUI 中混用(struts2 标签和 jstl)

  2. 根据操作中的预期,名称是错误的。

<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" />

于 2013-10-29T03:03:38.010 回答