看看spring自带的jpetstore的例子
<c:forEach var="product" items="${productList.pageList}">
  <tr bgcolor="#FFFF88">
  <td><b><a href="<c:url value="/shop/viewProduct.do"><c:param name="productId" value="${product.productId}"/></c:url>">
  <font color="BLACK"><c:out value="${product.productId}"/></font>
</a></b></td>
  <td><c:out value="${product.name}"/></td>
  </tr>
</c:forEach>