I like to know in a single web-container how many different web-applications can be run?
As I like to know the memory constraint of web container.
I like to know in a single web-container how many different web-applications can be
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.
The default memory to the servlet container is the default memory of the JVM, which differs between JVMs. The latest Sun JVM I think has
-Xmxset to 65mb, but I’m not sure.For Tomcat, you can increase this memory to whatever value you like (together with
-Xms) by setting it in the catalina.bat / catalina.sh. (for “Where exactly” – google it. I think it wasCATALINA_OPTS).To answer your question – there is no limit to the number of applications run in a container.