1.保存Session:
request.getSession().setAttribute(“session名字”, 值);
2.获取session:
session.getAttribute("session名字");
3.移除Session
session.invalidate();