Re: JSP & Java Bean Question - Life time of java bean or deleting it from the session or something!! HELP!
Posted By:
AlessandroA_Garbagnati
Posted On:
Thursday, November 14, 2002 12:31 AM
Alfred,
well, a bean inside a page is reused only if you store it in the same session space (HttpSession) or inside the application object (ServletContext).
If you put it inside the request or page space, then it will not be accessible from outside the same request or page context.