[Friday... ish] RE: Static objects in Struts Application ..

2006-10-16 Thread Dave Newton
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of > On 10/13/06, Chris Pratt <[EMAIL PROTECTED]> wrote: > > Each Web Application within the container is loaded within it's own > > Context (and ClassLoader) which effectively keeps the static's > > separate. > In that case, the statics

Re: Static objects in Struts Application ..

2006-10-14 Thread Craig McClanahan
On 10/13/06, Chris Pratt <[EMAIL PROTECTED]> wrote: Each Web Application within the container is loaded within it's own Context (and ClassLoader) which effectively keeps the static's separate. (*Chris*) That is generally true, *unless* you put your libraries in the shared classloader(s) pro

Re: Static objects in Struts Application ..

2006-10-13 Thread Chris Pratt
Each Web Application within the container is loaded within it's own Context (and ClassLoader) which effectively keeps the static's separate. (*Chris*) On 10/13/06, souravm <[EMAIL PROTECTED]> wrote: Hi, If there are two different Struts applications deployed on the same Tomacat instance, wha

Static objects in Struts Application ..

2006-10-13 Thread souravm
Hi, If there are two different Struts applications deployed on the same Tomacat instance, what happens to the static objects within the Struts framework? My guess is Struts maintains different Static objects for each application in a hash map. Can anyone confirm ? Regards, Sourav ***