在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
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 |
请发表评论