Posts

Spring Core Tutorial

Spring Core Tutorial Spring  is a lightweight framework was written by Rod Johnson and was released under the Apache 2.0 license in June 2003. Spring framework is an open source framework which enables the Java developers to build robust application with ease, it has some popular concepts such as  Inversion of Control  /  Dependency Injection  and  Autowiring . It even provides support for Struts, Hibernate, JSF, EJB etc.

JVM Architecture – Understanding JVM Internals

Image
JVM Architecture – Understanding JVM Internals Every Java developer knows that bytecode will be executed by JRE (Java Runtime Environment). But many don’t know the fact that JRE is the implementation of Java Virtual Machine (JVM), which analyzes the bytecode, interprets the code and executes it. It is very important as a developer we should know the Architecture of JVM, this enables us to write code more efficiently. In this JVM architecture in Java with diagram article, we will learn more deeply about JVM architecture in Java and different components of a JVM. What is a JVM in Java? A Virtual Machine is a Software implementation of a Physical Machine, Java was developed with the concept of WORA ( Write Once Run Anywhere ) which runs on a VM. The compiler will be compiling the java file into a java .class file.  The .class file is input to JVM which Loads and executes the class file. Below goes the Architecture of JVM. JVM Architecture Diagram How JVM works in Java? As s

Java best online learning site ...!!

http://beginnersbook.com/