reset password
Author Message
aligh1979
Posts: 121
Posted 23:36 Oct 31, 2011 |

If we set an object into session (    session.set("rubric", rubric)     ) , and make a new object by referencing the variable in that session (rubric = session.getAttribute("rubric")    )  , then changing this new created object (rubric) will change the object saved in the session too , because the new object is referencing that . so we do not need to set the session to the new one again . right ?

cysun
Posts: 2935
Posted 08:35 Nov 01, 2011 |

Yes.