Reputation: 27
I am running Eclipse, Tomcat, a servlet based webapplication my windows 10 machine. I was wondering how many JVM instances will be created?
Also, When will JVM be instantiated in windows 10 on startup or on starting any java based app.
Upvotes: 0
Views: 109
Reputation: 198314
One per process. See the Processes tab of your Task Manager.
When starting a JVM process (typically once per app, but could be more if it forks).
Upvotes: 1