Start networking and exchanging professional insights

Register now or log in to join your professional community.

Follow

What is Classloader in Java?

user-image
Question added by Mohd shahnawaz khan , Associate Project , Cognizant Technology Solution
Date Posted: 2014/01/13
Sandhya Binoy
by Sandhya Binoy , Software Professional , Karrox technologies

Java classLoader is a part of the Java Runtime Environment that dynamically loads Java classes into Java virtual Machine(JVM).ClassLoader is a class which is used to load class files in Java.

Java code is compiled into class file by javac compiler and JVM executes Java Program,by executing byte codes written in class file.ClassLoader is responsible for loading class file from file system or other network.

3 default classloaders used in Java

  • Bootstrap
  • Extension
  • System or Application classloader.

Bootstrap ClassLoader is responsible for loading standard JDK class file JRE/lib/rt.jar and it is parent of all classloaders in java

Extension classLoader delegates class loading request to its parent,Bootstrap and if unsuccessful, loads from jre/lib/ext directory or any other directory pointed by java.ext.dirs system property.

System or Application class loader is responsible for loading application specific classes from CLASSPATH environment variable, -classpath or -cp command line option, Class-Path attribute of Manifest file inside JAR.

Java classloaders are implemented using java.lang.ClassLoader.

 

Abdelrahman Hasan
by Abdelrahman Hasan , Java Team Lead , Self-employed

Hi,

Taken from this nice tutorial from Sun:

Motivation

Applications written in statically compiled programming languages, such as C and C++, are compiled into native, machine-specific instructions and saved as an executable file. The process of combining the code into an executable native code is called linking - the merging of separately compiled code with shared library code to create an executable application. This is different in dynamically compiled programming languages such as Java. In Java, the .class files generated by the Java compiler remain as-is until loaded into the Java Virtual Machine (JVM) -- in other words, the linking process is performed by the JVM at runtime. Classes are loaded into the JVM on an 'as needed' basis. And when a loaded class depends on another class, then that class is loaded as well.

When a Java application is launched, the first class to run (or the entry point into the application) is the one with public static void method called main(). This class usually has references to other classes, and all attempts to load the referenced classes are carried out by the class loader.

To get a feeling of this recursive class loading as well as the class loading idea in general, consider the following simple class:

publicclassHelloApp{publicstaticvoid main(String argv[]){System.out.println("Aloha! Hello and Bye");}}

If you run this class specifying the -verbose:class command-line option, so that it prints what classes are being loaded, you will get an output that looks as follows. Note that this is just a partial output since the list is too long to show here.

prmpt>java -verbose:classHelloApp[Opened C:\\Program Files\\Java\\jre1.5.0\\lib\\rt.jar][Opened C:\\Program Files\\Java\\jre1.5.0\\lib\\jsse.jar][Opened C:\\Program Files\\Java\\jre1.5.0\\lib\\jce.jar][Opened C:\\Program Files\\Java\\jre1.5.0\\lib\\charsets.jar][Loaded java.lang.Object from shared objects file][Loaded java.io.Serializable from shared objects file][Loaded java.lang.Comparable from shared objects file][Loaded java.lang.CharSequence from shared objects file][Loaded java.lang.String from shared objects file][Loaded java.lang.reflect.GenericDeclaration from shared objects file][Loaded java.lang.reflect.Type from shared objects file][Loaded java.lang.reflect.AnnotatedElement from shared objects file][Loaded java.lang.Class from shared objects file][Loaded java.lang.Cloneable from shared objects file][Loaded java.lang.ClassLoader from shared objects file][Loaded java.lang.System from shared objects file][Loaded java.lang.Throwable from shared objects file]...[Loaded java.security.BasicPermissionCollection from shared objects file][Loaded java.security.Principal from shared objects file][Loaded java.security.cert.Certificate from shared objects file][LoadedHelloApp from file:/C:/classes/]Aloha!Hello and Bye[Loaded java.lang.Shutdown from shared objects file][Loaded java.lang.Shutdown$Lock from shared objects file]

As you can see, the Java runtime classes required by the application class (HelloApp) are loaded first.

Class Loaders in the Java2 Platform

The Java programming language keeps evolving to make the life of applications developers easier everyday. This is done by providing APIs that simplify your life by allowing you to concentrate on business logic rather than implementation details of fundamental mechanisms. This is evident by the recent change of J2SE1.5 to J2SE5.0 in order to reflect the maturity of the Java platform.

As of JDK1.2, a bootstrap class loader that is built into the JVM is responsible for loading the classes of the Java runtime. This class loader only loads classes that are found in the boot classpath, and since these are trusted classes, the validation process is not performed as for untrusted classes. In addition to the bootstrap class loader, the JVM has an extension class loader responsible for loading classes from standard extension APIs, and a system class loader that loads classes from a general class path as well as your application classes.

Since there is more than one class loader, they are represented in a tree whose root is the bootstrap class loader. Each class loader has a reference to its parent class loader. When a class loader is asked to load a class, it consults its parent class loader before attempting to load the item itself. The parent in turn consults its parent, and so on. So it is only after all the ancestor class loaders cannot find the class that the current class loader gets involved. In other words, a delegation model is used.

The java.lang.ClassLoader Class

The java.lang.ClassLoader is an abstract class that can be subclassed by applications that need to extend the manner in which the JVM dynamically loads classes. Constructors in java.lang.ClassLoader (and its subclasses) allow you to specify a parent when you instantiate a new class loader. If you don't explicitly specify a parent, the virtual machine's system class loader will be assigned as the default parent. In other words, the ClassLoader class uses a delegation model to search for classes and resources. Therefore, each instance of ClassLoader has an associated parent class loader, so that when requested to find a class or resources, the task is delegated to its parent class loader before attempting to find the class or resource itself. The loadClass() method of the ClassLoader performs the following tasks, in order, when called to load a class:

If a class has already been loaded, it returns it. Otherwise, it delegates the search for the new class to the parent class loader. If the parent class loader doesn't find the class, loadClass() calls the method findClass() to find and load the class. The finalClass() method searches for the class in the current class loader if the class wasn't found by the parent class loader.

There's more in the original article, which also shows you how to implement your own network class loaders, which answers your question as to why (and how). See also the API docs.

More Questions Like This

Do you need help in adding the right keywords to your CV? Let our CV writing experts help you.