servlet与jsp的作用域对象使用

 1.在页面间传递数据时,可以用会话作用域session

  
  
  
  
  1. <%session.setAttribute("ub",ub);%> 
  2.  
  3. <%UserBean ub=(UserBean)(sesssion.getAttribute("ub"))%>; 

 

 

 

2.在servlet中使用除request之外的其他域对象

1)session

  1. HttpSession session=req.getSession(); 
  2. UserBean ub=session.getAttribute("ub1"); 

2)application

但是这种方法不常用,常用的作用域为request和session

  
  
  
  
  1. ServletContext application=this.getServletContext(); 
  2. application.getAttribute("ub"); 

你可能感兴趣的:(jsp,servlet)