HttpServletRequest.getSession特性和Session周期

request.getSession()HttpServletRequest.getSession(boolean)的区别Session的生命周期

 

HttpSession session=request.getSession();

1查询浏览器中是否有session对象,

2如果没有,就创建一个新的session对象

3如果有,就取出session对象

 

HttpSession session=HttpServletRequest.getSession(boolean);

booleantrue时,和request.getSession()一样

boolenfalse时,只查询,没有查到,返回null

 

 

HttpSession 的生命周期:

 

HttpServletRequest.getSession特性和Session周期_第1张图片

你可能感兴趣的:(HttpServletRequest.getSession特性和Session周期)