Does Tomcat sandbox apps, like running them on a separate JVM or of some sort?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Tomcat doesn’t really Sandbox web apps. The apps run in the same JVM. The only thing that might isolate an app is the classloader. Each webapp has its own classloader so it doesn’t share app specific classes with other apps.
When you run out of memory, the container is out of memory also. The only reason it’s running is probably because it doesn’t need to allocate more memory.