欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

struts2 session 解讀

 更新時(shí)間:2009年06月03日 02:03:03   作者:  
session 在struts2中的用法
HttpSession < session = ServletActionContext.getRequest().getSession();
        例:

        public String findAll(){
     HttpSession session = ServletActionContext.getRequest().getSession();
        list = userService.find();
     session.setAttribute("list", list);
        return this.SUCCESS;
    }
        在jsp中如何得到session中的屬性呢:
        如下:

         s:iterator value="#session.list" id="user"
            s:property value="user.userid"
            s:property value="user.firstname"
            s:property value="user.lastname"
         s:iterator

相關(guān)文章

最新評(píng)論