form-bean and persistent data in session scope

2005-03-08 Thread Raghuveer Vellanki
. RaghuVeer -Original Message- From: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 08, 2005 8:08 AM To: Struts Users Mailing List Subject: Re: form-bean and persistent data This is a valid way to do it. To be more specific, your Action would ask some delegate for the domain

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.

RE: form-bean and persistent data in session scope

2005-03-08 Thread Raghuveer Vellanki
- 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. This does create

Re: form-bean and persistent data in session scope

2005-03-08 Thread Antony Joseph
. This could be done in either a base action or by extending the request processor. - Original Message - From: Raghuveer Vellanki [EMAIL PROTECTED] To: 'Erik Weber' [EMAIL PROTECTED] Subject: form-bean and persistent data in session scope Date: Tue, 8 Mar 2005 15:27:17 +0530 Dear Erik, In My

form-bean and persistent data

2005-03-07 Thread Jonathan M Z
the view to the jsp page? for example if the form-bean's name is aBean, in action.execute I create the aBean, populate it, and then set it as an attribute into the request(or whatever scope I see fit) is this a standard approach for reading data into form-bean from the persistent data layer? thanks

Re: form-bean and persistent data

2005-03-07 Thread Erik Weber
(), then forwards the view to the jsp page? for example if the form-bean's name is aBean, in action.execute I create the aBean, populate it, and then set it as an attribute into the request(or whatever scope I see fit) is this a standard approach for reading data into form-bean from the persistent data layer

Re: form-bean and persistent data

2005-03-07 Thread Max Cooper
(), then forwards the view to the jsp page? for example if the form-bean's name is aBean, in action.execute I create the aBean, populate it, and then set it as an attribute into the request(or whatever scope I see fit) is this a standard approach for reading data into form-bean from