I'm a little confused about the JVM memory management.
1) When running my web application on Eclipse, I know that I can edit the eclipse.ini and modify Xms and Xmx paramethers.
The memory changes will affect all the web applications I run on Eclipse? Is it correct?
2)How can I set the memory size for a specific web application, in order to be sure that a specific web application running under a server (tomcat, weblogic, etc.) will have that memory?
I see many examples with this command java -Xms16m -Xmx64m ClassName, but I can't understand what should be the ClassName value for a web application.
Thank you guys