Peter Crowther wrote:
From: David kerber [mailto:[EMAIL PROTECTED] Running TC 5.5.15 on Windows Server 2003, JRE 1.5.0_12.

My understanding is that if I'm running the same (or different, for that matter) webapp on separate tomcat instances (different ports, context roots, etc), they will each have their own copies of all their internal objects and data, and cannot communicate across instances without special efforts being taken, even if they use many of the same utility libraries.

Is that understanding correct? I hope so, because I'm working on simplifying some of my internal property storage, and need to be sure that they won't interfere with each other if the different apps use the same base classes to store their own data.

Each Tomcat instance runs in its own Java virtual machine.  Each JVM has
its own copy of each class, as they each run in their own address space.
So you're correct.
Thanks!



---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to