Is the following method thread-safe?  
   
  I use my own way for authentication. After authenticated, a user info is put 
into session,  when logout, call session.invalidate();
   
    Current symptom is: a user info gets into another user's session. So 
sometimes User A can see User B's info.
   

  The way to get session:  is it thread-safe?
   
    public static HttpSession getHttpSession(boolean create) {
    FacesContext context = FacesContext.getCurrentInstance();
    return (HttpSession)context.getExternalContext().getSession(create);
  }
   
  If a user clicks two buttons at the same time(two requests belong to one same 
session), will it be thread-safe?
   
  Thanks for help.

                
---------------------------------
Yahoo! Music Unlimited - Access over 1 million songs.Try it free. 

Reply via email to