Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what java virtual machine will do while executing multiple java applications

Tags:

java

jvm

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.

like image 640
bannie Avatar asked Sep 20 '12 08:09

bannie


2 Answers

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.

like image 153
Brian Agnew Avatar answered Nov 11 '22 23:11

Brian Agnew


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

like image 36
SJuan76 Avatar answered Nov 12 '22 00:11

SJuan76