| Author |
Object cloning in HTTPSession?
|
Ram Narayan.M
Ranch Hand
Joined: Jul 11, 2010
Posts: 244
|
|
After binding of instance 'a' in session, StringBuffer instance is updated after appending... But this change wont be impacted on object in the session... Output of instance fetched from Session will be only "java"... It will be impacted only if the updated object is rebinded again in Session...
Why the append operation is not reflected on object in session?... Does object cloning occur in HTTPSession?
|
SCJP 6 [SCJP - Old is Gold]
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12267
|
|
Exactly what did you do to get this result?
During one request, both the local and session references should point to the same object.
IF the servlet container wants to, it can serialize the session to disk. When it is read back in for a subsequent request a new StringBuffer object will be created.
Bill
|
Java Resources at www.wbrogden.com
|
 |
 |
|
|
subject: Object cloning in HTTPSession?
|
|
|