I have one List. This is a selection from the java class to the jsp page. I want to display this list on the jsp page, but if List is empty, then display one error message, otherwise display the list item.
<s:iterator value="productList">
<tr style="background-color: #99CCFF">
<td><s:property value="pid"/></td>
<td><s:property value="productname"/></td>
<td><s:property value="producttype"/></td>
<td><s:property value="productprice"/></td>
<td><s:property value="shopname"/></td>
<td><s:property value="productcity"/></td>
<td><s:property alue="ownername"/></td>
</tr>
</s:iterator>
source
share