经典面试题-简述HttpSession 的作用、使用方法,可用代码说明

2019-11-29 00:35:43 浏览数 (1)

HttpSession 中可以跟踪并储存用户信息,把值设置到属性中,有2 个方法:setAttribute(),getAttrribute();

  • 例如:在一个方法中用session.setAttribute(“student”,student);在session 中设置一个属性名为student,值为一个名为student 的对象。而后可在同一session 范围内用getAttribute(“student”)取出该属性,得到student对象。

0 人点赞