> On Jan 18, 2008, at 1:02 PM, Dave Newton wrote: > > --- Ted Slusser <[EMAIL PROTECTED]> wrote: > >> I have a struts2 action that is having some parameters set by the > >> parameter interceptor. If I go to a second browser / computer and > >> call the action I am seeing the same values on the Action that were > >> previously set. Is this the normal behavior? Is there a way to turn > >> it off? Do I need to listen for some event at the end of the action > >> lifecycle and clear my variables manually? > > > > Shouldn't need to. Are you defining your actions in a Spring config? > > > > d. > > On Jan 18, 2008 11:07 AM, Ted Slusser <[EMAIL PROTECTED]> wrote: > Yes. >
Make sure you set scope="request" on your Spring action beans or it will create only one instance of the bean and reuse it forever. (*Chris*) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

