存
ActionContext.getContext().getSession().put("teacherlist", teacherlist);
取
teacherlist=(List<Teacher>) ActionContext.getContext().getSession().get("teacherlist");
清除
ActionContext.getContext().getSession().clear();
存
ActionContext.getContext().getSession().put("teacherlist", teacherlist);
取
teacherlist=(List<Teacher>) ActionContext.getContext().getSession().get("teacherlist");
清除
ActionContext.getContext().getSession().clear();
转载于:https://www.cnblogs.com/feifeishi/p/6541237.html