Understanding Java Development Kit
Java is a compiled and interpreted language.
JDK is a combination of development tools and JRE
/usr/lib/jvm/java-1.8.0-openjdk-amd64/jre/bin
in linux, consist of all the java development tools.JRE stands for Java runtime environment, which consits of API (run time libraries).
/usr/lib/jvm/java-1.8.0-openjdk-amd64/jre/lib/rt.jar
in linux, consist of all the java package folders and files stored in jar packaging format.To view them using jar tool use the command,
How java achieves platform independence i.e philosophy of WORA?
When we compile the java source file using java compiler, it generates an intermediate byte code(
.class
file) which is platform independent. This.class
files cannot run on any platform(OS + hardware) directly.As this .class file cannot be run on any real machine, we need a virtual machine to convert this platform independent code to platform specific code. This is where we need a translator and
JVM
acts as a translator. Hence,JVM
is platform specific, and acts as a translator.
What does JVM do?
JVM load and execute all the required classes.
Components of JVM
class loader
, which loads all the classes in JVM memory(in to something called method area).Phases involved in class loader
Loading
Linking
Verify : Checks correctness of
.class
filePrepare : Allocates memory for static fields of class/interface and initialize them with default value.
Resolve : Symbolic references with direct references.
Initializing
Runtime memory area
Method area
Heap
Stack per thread
Program counters per thread
Native method stack
Execution Engine
Interpreter
, which takes intermediate byte code as input and outputs platform specific native code (This code is directly runnable on hardware).JIT(Just in time compiler)
, basically use native code cache to make code interpretation faster by storing repeatedly occurring code in to native cache after being translated. JIT consists of,Intermdiate code generator : Generates intermediate code.
Target code generator : Convert intermediate code to native machine code.
Code optimizer : Optimize intermediate code generated
Hotspot profiler : Finds the hot spots in the code.
Garbage collector
Native method interface (JNI)
Native method library
Last updated