如何在jsp中遍历bean内的对象属性

时间:2016-02-18 17:22:23

标签: jsp struts2 iterator javabeans valuestack

我有一个包含以下属性的列表产品:

  • 标识符
  • 颜色
  • 尺寸
  • 供应商

Supplier属性是具有以下属性的对象:

  • 名称
  • 电话

对于我列表中的每个产品,我想显示标识符&供应商名称。我怎么能用struts / jstl做到这一点?

这是我尝试没有成功的原因:

<s:iterator value="products">
    <tr>
        <td><s:property value="identifiant"/></td>
        <td><s:property value="supplier.name"</td>
    </tr>
</s:iterator>

3 个答案:

答案 0 :(得分:1)

每个属性都应该有getter。如果productsAction类的属性,那么它应该具有

//default constructor

public List<Product> getPoducts(){...} //getter

Product班级

//default constructor

public String getIdentifier(){...} //getter
public String getColor(){...} //getter
public String getPhone(){...} //getter
public String getSupplier(){...} //getter

Supplier班级

//default constructor

public String getName(){...} //getter
public String getPhone(){...} //getter

在JSP中

<s:iterator value="products">
    <tr>
        <td><s:property value="identifier"/></td>
        <td><s:property value="supplier.name"/></td>
    </tr>
</s:iterator>

答案 1 :(得分:0)

使用JSTL,您可以尝试使用<c:forEach>标记,如下所示:

<tr>
<c:forEach items="products" var="product>
    <td>
        <c:out value="${product.identifiant}">
        <c:out value="${product.supplier.name}">
    </td>
</c:forEach>
</tr>

答案 2 :(得分:0)

你可以试试这个:

<c:forEach items="${products}" var="product">
    <tr>
        <td><c:out value="${product.identifier}" /></td>
        <td><c:out value="${product.supplier.name}" /></td>
    </tr>
</c:forEach>