RT:
           我是用struts2 来做的
Action中:
         pList = new HashMap();
Product p = productManager.getProductById(id);
Saleitem si = new Saleitem();
si.setProduct(p);
si.setPcount(1);
pList.put(p.getId(), si);
ActionContext.getContext().getSession().put("allProduct", pList);我把 plist这个集合 放入session中 在JSP 页面中,如何用 <s:iterator> 标签把session中的集合来迭代出来啊?