在网上常常看到有人对request.getSession(false)提出疑问,我第一次也很迷惑,看了一下J2EE1.3 API,看一下官网是怎么解释的。 html
【官方解释】java
getSession web
public HttpSession getSession(boolean create)spring
Returns the current HttpSession
associated with this request or, if if there is no current session and create
is true, returns a new session.cookie
If create
is false
and the request has no valid HttpSession
, this method returns null
.session
To make sure the session is properly maintained, you must call this method before the response is committed. If the container is using cookies to maintain session integrity and is asked to create a new session when the response is committed, an IllegalStateException is thrown.app
Parameters:
- to create a new session for this request if necessary; true
false
to return null
if there's no current sessionide
Returns: the HttpSession
associated with this request or null
if create
is false
and the request has no valid session函数
译:工具
getSession(boolean create)意思是返回当前reqeust中的HttpSession ,若是当前reqeust中的HttpSession 为null,当create为true,就建立一个新的Session,不然返回null;
简而言之:
HttpServletRequest.getSession(ture) 等同于 HttpServletRequest.getSession()
HttpServletRequest.getSession(false) 等同于 若是当前Session没有就为null;
【问题和bug】:
我周围不少同事是这样写的;
须要注意的地方是request.getSession() 等同于 request.getSession(true),除非咱们确认session必定存在或者sesson不存在时明确有建立session的须要,不然尽可能使用request.getSession(false)。在使用request.getSession()函数,一般在action中检查是否有某个变量/标记存放在session中。这个场景中可能出现没有session存在的状况,正常的判断应该是这样:
【投机取巧】:
若是项目中用到了Spring(其实只要是Java的稍大的项目,Spring是一个很好的选择),对session的操做就方便多了。若是须要在Session中取值,能够用WebUtils工具(org.springframework.web.util.WebUtils)的getSessionAttribute(HttpServletRequest request, String name)方法,看看高手写的源码吧:哈哈。。
注:Assert是Spring工具包中的一个工具,用来判断一些验证操做,本例中用来判断reqeust是否为空,若为空就抛异常。
上面的代码又能够简洁一下啦,看吧: