Re: strange tomcat problem with struts1.1

2004-05-10 Thread Riyad Kalla
point to another hashmap once initialized > but its contents can still be modified. So just use method level > variables. > > -Original Message- > From: Riyad Kalla [mailto:[EMAIL PROTECTED] > Sent: Monday, May 10, 2004 8:56 AM > To: Struts Users Mailing List > Subje

RE: strange tomcat problem with struts1.1

2004-05-10 Thread MARU, SOHIL (SBCSI)
] Sent: Monday, May 10, 2004 8:56 AM To: Struts Users Mailing List Subject: Re: strange tomcat problem with struts1.1 Jingesh, See my last post, you don't need to synchronize and it will just slow down your app (NOTE: Do not make use of non-final class variables in Actions and you will be

Re: strange tomcat problem with struts1.1

2004-05-10 Thread Riyad Kalla
Jingesh, See my last post, you don't need to synchronize and it will just slow down your app (NOTE: Do not make use of non-final class variables in Actions and you will be fine) Jignesh Patel wrote: Hi All, We are facing one strange problem, our server hangs after every 2-3 days. The reason be

RE: strange tomcat problem with struts1.1

2004-05-10 Thread Geeta Ramani
Jignesh: Trust me on this, you *don't* want to avoid concurrent requests: Struts takes care of that bit for you. As long as the variables in the execute method of your action classes are all method variables and you stay away from class variables, you will be ok. Really. :) As for why your to