jsp中:
1 (String)request.getSession().getAttribute("username"); // 获取2 request.getSession().setAttribute("username", "xxx"); // 设置
Java中:
1 //servlet中 2 request.getSession(); 3 session.getAttribute("username"); 4 session.setAttribute("username", "xxx"); 5 session.setMaxInactiveInterval(30*60); 6 session.invalidate(); 7 8 //struts中方法1 9 ServletActionContext.getRequest().getSession().setAttribute("username", "xxx");10 ServletActionContext.getRequest().getSession().getAttribute("username");11 ServletActionContext.getRequest().getSession().setMaxInactiveInterval(30*60); 12 ServletActionContext.getRequest().getSession().invalidate();13 14 //struts中方法215 ActionContext.getContext().getSession().put("username", "xxx");16 ActionContext.getContext().getSession().get("username");17 ActionContext.getContext().getSession().clear();
web.xml中:
12 30 3
tomcat-->conf-->conf/web.xml中:
12 30 3
总结:优先级比较,java中写的要比web.xml中的高。