私はこれらの属性を持つリスト製品を持っています:
- 識別子
- 色
- サイズ
- サプライヤー
サプライヤー属性は、次の属性を持つオブジェクトです。
- 名前
- 電話
リスト内の各製品について、識別子とサプライヤー名を表示したいと思います。struts / jstl でこれを行うにはどうすればよいですか?
ここに私が成功していないものがあります:
<s:iterator value="products">
<tr>
<td><s:property value="identifiant"/></td>
<td><s:property value="supplier.name"</td>
</tr>
</s:iterator>