Â
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!
Â
Â
A trip to Java hotspot map process
Â
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