8
votes

By reading this article, I know that each java application will run in a specific Java Virtual Machine Instance. So if I execute the following commands("Java -jar test1.jar","Java -jar test2.jar", I will get two processes in the system. And If each command used the default heap size, for example, 256M. The total memory cost is 512M, is that right? Also I have other questions:

  • Is the Java virtual Machine a daemon process, start up with the system?
  • When I execute "java -jar test1.jar", it will create an instance of Java Virtual Machine, then execute the main function. Does it mean every running java application is a sub thread or process of Java Virtual Machine?
  • Is each running java application individual, other application can not get variable, method, constant, etc, from this running java application?
  • If one running java application is crashed, will it affect other running java application?

PS: I googled and got lots of different answers, I was totally confused. Anyone who can help me on this kind of questions or even more depth of Java virtual Machine. For example, How it works.

3

3 Answers

7
votes

The JVM is a standard process, just like any other. As such there's no implicit communication or state sharing between the two. Each will have their own heap, threads etc. If you kill one it won't affect the other.

What will get shared are the code pages of the JVM itself. The kernel is intelligent enough to identify the same binary (any binary -not just the JVM) running twice and reuse the image. This only applies to the actual binary code - not its state. See here for more info re. Linux.

The JVM isn't a daemon process, but could be started upon system startup as a Windows service or Unix/Linux process (via /etc/init.d scripts). This is how you'd (say) run a web service written in Java when a machine is booted up.

2
votes

1) No, but there a ways to launch java applications as services with wrappers (Google for "Java service").

2) Yes.

3) You can use communication between processes (v.g. HTTP). But there are no shortcuts due to all processes being run in JVM.

4) No

0
votes

For the OS, JVM like an user application. Each JVM Instance is individual.

  1. No. JVM is normal process as others.But you can run it as deamon process.
  2. Yes. Java application run on JVM just like you application on OS.
  3. Yes. Each JVM thread is individual, but they can communication whith other JVMs through network,RMI...
  4. It depends. Normally they are individual, but if a JVM crash cause the OS crash, other JVMs will be effected.