请教servlet中getsession的用法

HttpSessionsession=request.getSession(false);HttpSessionsession=request.getSession(tr... HttpSession session = request.getSession(false);
HttpSession session = request.getSession(true);
HttpSession session = request.getSession();
这三种分别什么意思
展开
 我来答
xc_jetguo
2009-12-26 · TA获得超过596个赞
知道小有建树答主
回答量:421
采纳率:0%
帮助的人:284万
展开全部
getSession是返回当前用户的会话对象,参数的区别在于

参数为true,则如果“当前用户的会话对象”为空(第一次访问时)则创建一个新的会话对象返回

参数为false,则如果“当前用户的会话对象”为空,则返回null(即不自动创建会话对象)

注意request.getSession() 等同于 request.getSession(true),除非我们确认session一定存在或者sesson不存在时明确有创建session的需要,否则请尽量使用request.getSession(false)。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
me_Somnus
2009-12-26
知道答主
回答量:5
采纳率:0%
帮助的人:0
展开全部
Returns the current HttpSession associated with this request or, if if there is no current session and create is true, returns a new session.
If create is false and the request has no valid HttpSession, this method returns null.

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.

Parameters:
true - to create a new session for this request if necessary; false to return null if there's no current session
Returns:
the HttpSession associated with this request or null if create is false and the request has no valid session
See Also:
getSession()

参考资料: J2EE-API

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
猜不对
2009-12-26 · TA获得超过104个赞
知道答主
回答量:65
采纳率:0%
帮助的人:28.1万
展开全部
去看看文档好了!那是官方的。应该是最准确的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式