HttpServletRequest request 一次请求
HttpServletResponse response 响应信息
----------------------------------------------
HttpSession session 一次会话
session.setAttribute("key",Object);
Object = session.getAttribute("key");
session.removeAttribute("key");
Enumeration en = session.getAttributeNames();//获取全部的key
- request和session作用域的区别