Do servlet containers prevent web applications from causing each other interference and how do they do it?

Posted by chrisbunney on Stack Overflow See other posts from Stack Overflow or by chrisbunney
Published on 2010-12-22T20:34:22Z Indexed on 2010/12/22 20:54 UTC
Read the original article Hit count: 374

Filed under:
|
|
|

I know that a servlet container, such as Apache Tomcat, runs in a single instance of the JVM, which means all of its servlets will run in the same process.

I also know that the architecture of the servlet container means each web application exists in its own context, which suggests it is isolated from other web applications.

As depicted here: alt text

Accepting that each web application is isolated, I would expect that you could create 2 copies of an identical web application, change the names and context paths of each (as well as any other relevant configuration), and run them in parallel without one affecting the other. The answers to this question appear to support this view.

However, a colleague disagrees based on their experience of attempting just that.

They took a web application and tried to run 2 separate instances (with different names etc) in the same servlet container and experienced issues with the 2 instances conflicting (I'm unable to elaborate more as I wasn't involved in that work).

Based on this, they argue that since the web applications run in the same process space, they can't be isolated and things such as class attributes would end up being inadvertently shared. This answer appears to suggest the same thing

The two views don't seem to be compatible, so I ask you: Do servlet containers prevent web applications deployed to the same container from conflicting with each other?

If yes, How do they do this?

If no, Why does interference occur?

and finally, Under what circumstances could separate web applications conflict and cause each other interference?, perhaps scenarios involving resources on the file system, native code, or database connections?

© Stack Overflow or respective owner

Related posts about java

Related posts about web-applications