Dec 10, 2019

Understanding JVM: JVM Execution Engine

Now we know that how classes are loaded by Class Loaders, which are part of Class Loader Sub System, next thing that happens is the execution of those class files. JVM Execution Engine is the responsible component for this. It has two components: Interpreter JIT Compiler Interpreter It...

Oct 25, 2019

How to get heap dump of Java Application?

There is a dedicated space where all the objects are stored at runtime. It is called heap. It is created at the time of JVM startup and is configurable using Xms (to be allocated at the time of JVM startup) and Xmx (maximum space to be sued heap) JVM options. The JVM automatically performs Garbage...

Nov 15, 2017

Nov 5, 2017

Oct 11, 2017