BorderJ's Blog

--- java FreeBsd Web3D open-sources

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  8 随笔 :: 1 文章 :: 40 评论 :: 0 Trackbacks

2006年7月31日 #

Writely Blog is proud to announce that Writely access is now free for everyone. Just sign up for an account.

Writely is a word processing tool acquired by Google this year. Since it was acquired, users were required to have an invitation to try the product. You can read my negative review, but there are many people who like Writely.
posted @ 2006-08-18 09:53 BorderJ 阅读(448) | 评论 (0)编辑 收藏

HttpRequest对象有两种形式的getSession方法调用:
一个是getSession(),
另一个是getSession(boolean isNew)

这样的,前者会检测当前时候有session存在,如果不存在则创建一个,如果存在就返回当前的。
getSession()相当于getSession(true),

参数为true时,若存在会话则返回该会话,否则新建一个会话。
参数为false时,若存在会话则返回该会话,否则应该返回一个NULL

这是文档:

getSession  
  public   HttpSession   getSession(boolean   create)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  


感谢
zhouhu的提醒,现在已经修正。
Edit By: BorderJ    2006.8.18


posted @ 2006-07-31 19:46 BorderJ 阅读(7787) | 评论 (3)编辑 收藏