Re: form-bean and persistent data in session scope

2005-03-08 Thread Antony Joseph
Hi Raghuveer, You will have to clean up the session yourself. Generally an application will have some type of menu (links). If you follow a naming convention for the mappings for the menu items (mapping seperate than that for the action), you can check for that and clean up the session. This co

RE: form-bean and persistent data in session scope

2005-03-08 Thread Raghuveer Vellanki
-Original Message- From: Jeff Beal [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 08, 2005 7:43 PM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: Re: form-bean and persistent data in session scope As far as I know, Struts never explicitly removes form beans from session scope. Th

Re: form-bean and persistent data in session scope

2005-03-08 Thread Jeff Beal
As far as I know, Struts never explicitly removes form beans from session scope. This does create the potential for performance issues, simply because those form beans take up memory. With a limited user base, you can probably throw enough RAM into your server to avoid serious problems, though.