background preloader

ClassLoader

Facebook Twitter

Java Class Loading - TechJava. It’s good to know, how Java class loading works, when you have to develop in Java.

Java Class Loading - TechJava

Basic understanding of class loading process helps every Java developer to deal with several ClassLoader related Exceptions. Class loader delegation The loading of Java classes is performed by class loaders (CL), they are responsible for loading classes into the JVM. Simple applications can use the Java platform’s built-in class loading facility to load their classes, more complex applications tend to define their own custom class loaders. Recherche Google - custom classloader. Writing Your Own ClassLoader. Oracle Technology Network > Java Software Downloads View All Downloads Top Downloads New Downloads What's New.

Writing Your Own ClassLoader

Reloading Java Classes 101: Objects, Classes and ClassLoaders. Welcome to Turnaround article series from ZeroTurnaround.

Reloading Java Classes 101: Objects, Classes and ClassLoaders

In this article we will review how to reload a Java class using a dynamic classloader. To get there we’ll see how objects, classes and classloaders are tied to each other and the process required to make changes. We begin with a bird’s eye view of the problem, explains the reloading process, and then proceed to a specific example to illustrate typical problems and solutions. Other articles in the series include: