比如购物车的itemlist在session中怎么才能在jsp中显示一个购物车中商品列表

解决方案 »

  1.   

    public class 购物车Action extends ActionSupport
    {
       public list getItemlist()
       {
          return  (list)ServletActionContext.getRequest().getSession().getAttribute("Session你的购物车");
       }
     
    }
    你需要配置
    <action name="购物车" class="xxx.购物车Action">
    </action>这样就可以用标签取数据了.
      

  2.   

    在标签中不可以直接取session中的列表吗