Re: Synchronized keyword question

2004-10-21 Thread Craig McClanahan
It's too simplistic to make "always" or "never" statements on this topic -- you have to evaluate each use case on its own, based on the actual environment. Synchronization is never an issue for single-threaded applications (like a stand-alone Java application), because there is never any potential

Synchronized keyword question

2004-10-21 Thread Randy Eckhoff
I am evaluating struts and have a question about something I read in the O'Reilly Jakarta Struts book. Specifically it says to not use the synchronized keyword and to avoid Vector and Hashtable at all. Considering that our system has been for a long time, this is actually a huge thing for us. Is