Java class loading

In some development environments, the developer must choose whether to use static or dynamic linking. The choice is whether a compiled executable statically contains all its library dependencies within itself, or whether it is dynamically able to locate and load its dependencies at runtime.

With Java, this choice does not exist, as all programs use dynamic linking. The loading process begins when the java command is invoked, and the application's main class is loaded into the JVM. All classes referenced by the main() method are then loaded lazily, and made available to the JVM for execution, as references to these classes are encountered.

The bytes that represent a given class usually reside on disk as a file with a .class extension, ...

Get Tomcat 6 Developer's Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.