当用户更新自己的信息时,重新设置session的值,例如登录成功后:request.getSession().setAttribute("shop", shop);  这样可以取到session中shop变量的值, 但是在更新了数据后也用 request.getSession().setAttribute("shop", shop);取session中shop的变量就为空了,请问 这是怎么回事?应该怎么重新设置session的值?