JVM Tutorials - Herong's Tutorial Examples
Dr. Herong Yang, Version 4.10

What Is Class Loader?

This section describes what is Java Class Loader - Part of the Java Runtime Environment (JRE) that dynamically loads Java classes into the Java Virtual Machine (JVM).

What Is Class Loader? Class Loader is a part of the Java Runtime Environment (JRE) that dynamically loads Java classes into the Java Virtual Machine (JVM).

Class Loader is designed as a hierarchical delegation tree with these basic concepts:

  • Each node of the tree is called ClassLoader.
  • Each ClassLoader is used to load a specific group of Java classes.
  • The root node is called "Bootstrap ClassLoader", which is created by JVM and responsible to load JVM system classes.
  • Under the "Bootstrap ClassLoader" is the "Extensions ClassLoader", which is creatd by JVM and responsible to load JVM extension classes.
  • Under the "Extensions ClassLoader" is the "System ClassLoader", which is creatd by JVM and responsible to load Java application classes.
  • ClassLoaders are actually represented in JVM as objects of the ClassLoader class or its subclasses.
  • You can create your own ClassLoaders under the "System ClassLoader" to load Java classes in some special ways.
  • A loaded Java class will be represented in JVM as a Class object with its ClassLoarder recorded as a property.

Here is a simple diagram that illustrates the ClassLoader delegation tree:
ClassLoader Delegation Tree

Based JDK 1.6 documentations, here are my understandings on Bootstrap, Extensions and System ClassLoaders:

1. Bootstrap ClassLoadder - The root ClassLoader: Created by the JVM and represented as "null". Responsible to load JVM system classes located in <JAVA_HOME>/lib folder.

2. Extensions ClassLoadder - Created by the JVM and represented as a sun.misc.Launcher$ExtClassLoader object. Responsible to load JVM extension classes located in <JAVA_HOME>/lib/ext folder.

3. System ClassLoadder - Created by the JVM and represented as a sun.misc.Launcher$AppClassLoader object. Responsible to load Application classes specified in the "classpath".

Last update: 2010.

Table of Contents

 About This Book

 Download and Install Java SE 1.6 Update 2

 java.lang.Runtime Class - The JVM Instance

 java.lang.System Class - The Operating System

ClassLoader Class - Class Loaders

What Is Class Loader?

 What Is java.lang.ClassLoader Class?

 Accessing the ClassLoader of a Class

 JVM "-verbose:class" Option

 loadClass() Method - Loading Classes Explicitly

 getSystemResource() Method - Finding Files

 Class Loading Problem - JAR Hell

 Class Class - Class Reflections

 Sun's JVM - Java HotSpot VM

 JRockit JVM 7.0 by BEA Systems

 JRockit JVM 8.0 by BEA Systems

 Memory Management Rules and Tests

 Garbage Collection Tests

 Stack Overflow Tests

 Thread Testing Program and Result

 StringBuffer Testing Program and Result

 CDS (Class Data Sharing)

 Micro Benchmark Runner and JVM Options

 Micro Benchmark Tests on "int" Operations

 Micro Benchmark Tests on "long" Operations

 Micro Benchmark Tests in JIT Compilation Mode

 Micro Benchmark Tests on "float" and "double" Operations

 References

 PDF Printing Version

Dr. Herong Yang, updated in 2010
What Is Class Loader?