Правильная реализация загрузчика классов будет:
- Проверьте, загружен ли уже класс.
- Обычно запрашивают загрузчик родительского класса для загрузки класса
- Попытка найти класс в его собственном пути к классу.
Реализация ClassLoader.loadClass по умолчанию выглядит примерно так:
protected synchronized Class<?> loadClass(String name, boolean resolve) {
// First, check if this class loader has directly defined the class or if the
// JVM has initiated the class load with this class loader.
Class<?> result = findLoadedClass(name);
if (result == null) {
try {
// Next, delegate to the parent.
result = getParent().loadClass(name);
} catch (ClassNotFoundException ex) {
// Finally, search locally if the parent could not find the class.
result = findClass(ex);
}
}
// As a remnant of J2SE 1.0.2, link the class if a subclass of the class
// loader class requested it (the JVM never calls the method,
// loadClass(String) passes false, and the protected access modifier prevents
// callers from passing true).
if (resolve) {
resolveClass(result);
}
return result;
}
Некоторые реализации загрузчика классов будут делегировать другим не родительским загрузчикам классов (например, OSGi делегирует граф загрузчиков классов в зависимости от пакета), а некоторые реализации загрузчиков классов будут искать классы в локальном пути к классам перед делегированием .