1.在页面间传递数据时,可以用会话作用域session
- <%session.setAttribute("ub",ub);%>
- <%UserBean ub=(UserBean)(sesssion.getAttribute("ub"))%>;
2.在servlet中使用除request之外的其他域对象
1)session
- HttpSession session=req.getSession();
- UserBean ub=session.getAttribute("ub1");
2)application
但是这种方法不常用,常用的作用域为request和session
- ServletContext application=this.getServletContext();
- application.getAttribute("ub");