Right, makes sense. Thank you. On Thu, Feb 5, 2015 at 10:21 AM, Konstantin Kolinko <[email protected]> wrote:
> 2015-02-05 21:07 GMT+03:00 Igor Urisman <[email protected]>: > > Hello, folks. > > > > I can't seem to find a good solution for the following problem. I have > an > > object that is added to the HTTP session via the setAttribute() method. > The > > object implements the HttpSessionBindingListener interface and its > > valueUnbound() method is dutifully called by the contained at the time > the > > session is destroyed. Now, in my use case the session is destroyed via > the > > HttpSession.invalidate() call, so (presumably) the container creates the > > new session concurrently with destroying the current session. > > No. invalidate() only destroys the current session. It does not > create any new sessions. > > A new session can be created by a HttpServletRequest.getSession() / > getSession(true) call. > > Best regards, > Konstantin Kolinko > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
