A trip to Java hotspot map process

Asked By 30 points N/A Posted on -
qa-featured

 

Experts! Any ideas on Java hotspot map process? I just want to know maybe in the near future it can be useful to me. Your help and inputs will be very much appreciated. Thanks indeed guys!

 

 

SHARE
Answered By 0 points N/A #198216

A trip to Java hotspot map process

qa-featured

 

Hello,
 
Here is how a JVM is mapped to a running application. Speaking generally, an application will have its own instance of Java Virtual Machine and Operating System process and each JVM instance is independent of one another. If you run two java programs simultaneously on the same machine and start each one with the java command then they will run as two separate JVMs. If your application, which is running on one JVM, launches threads, then those threads will also be executed under that same JVM.
 
Hope it was helpful.
 
Best Regards,
Parisi

Related Questions