【Java高级】类加载器核心技术,从自定义加载外部jar说起

本文为原创文章,转载请注明出处
查看[Java]系列内容请点击:https://www.jianshu.com/nb/45938443

我们先举个例子,假如我们有如下的类:

package com.codelifeliwan;

public class Test {

    public void test() {
        System.out.println("----------------------BEGIN test--------------------");
        System.out.println("this is thread:" + Thread.currentThread().getId() +
                "\nContextClassLoader:" + Thread.currentThread().getContextClassLoader() +
                "\nClassLoader:" + this.getClass().getClassLoader());
    }

    // 注意这里是静态方法
    public static void staticTest() {
        System.out.println("----------------------BEGIN staticTest--------------------");
        System.out.println("this is thread:" + Thread.currentThread().getId() +
                "\nContextClassLoader:" + Thread.currentThread().getContextClassLoader() +
                "\nClassLoader:" + Test.class.getClassLoader());
    }
}

我们将这个类打成jar包test.jar,那么我们如何在另外一个程序里面加载这个jar包并使用其中的程序?

双亲委托类加载器

一个比较通用的方法,是自定义一个类加载器来加载这个jar包,这里我们使用URLClassLoader类加载器:

import java.io.File;
import java.net.URL;
import java.net.URLClassLoader;

public class Main {
    // 全局共享的外部类加载器
    private static ClassLoader classLoader = null;

    // 初始化类加载器
    synchronized public static void setClassLoader() throws Exception {
        if (classLoader != null) return;
        classLoader = new URLClassLoader(new URL[]{new File("D:\\test.jar").toURI().toURL()});
        Thread.currentThread().setContextClassLoader(classLoader);
    }

    // 测试类加载器
    public static void doTest() throws Exception {
        Class clazz = classLoader.loadClass("com.codelifeliwan.Test"); // 使用URLClassLoader类加载器加载jar中的类
        clazz.getMethod("staticTest").invoke(null, null); // 调用静态的staticTest方法

        Object obj = clazz.getConstructor(null).newInstance();
        clazz.getMethod("test").invoke(obj, null); // 调用非静态的test方法

        System.out.println("=================================================\n");
    }

    public static void main(String[] args) throws Exception {
        setClassLoader(); // 初始化类加载器
        doTest(); // 测试类加载器
    }
}

注意,这里测试类加载器使用的是反射的方式。

程序输出:

----------------------BEGIN staticTest--------------------
this is thread:1
ContextClassLoader:java.net.URLClassLoader@b4c966a
ClassLoader:jdk.internal.loader.ClassLoaders$AppClassLoader@3fee733d
----------------------BEGIN test--------------------
this is thread:1
ContextClassLoader:java.net.URLClassLoader@b4c966a
ClassLoader:jdk.internal.loader.ClassLoaders$AppClassLoader@3fee733d
=================================================

可以看到,我们能够加载对应的jar中的类,并进行实例化和调用等。

我们主要看输出的信息:

ClassLoader:jdk.internal.loader.ClassLoaders$AppClassLoader@3fee733d

可以看到,虽然我们用的是自己定义的URLClassLoader类加载器来进行加载外部的程序的,但是这里实际使用的是应用类加载器AppClassLoader(在创建classLoader的时候自动设置这个对象的类加载器为应用类加载器)。我们跟踪进入ClassLoader类的protected Class<?> loadClass(String name, boolean resolve)方法中查看,发现在加载的时候执行了:

c = parent.loadClass(name, false);

这里,parent就是应用类加载器,加载完的c不为空则直接返回相应的类,对于每一级类加载器,系统会优先使用父级类加载器,只有当父级类加载器加载失败的时候才使用当前的类加载器。这就是著名的类加载的【双亲委托模型】,相关资料请自行查阅。

线程上下文类加载器

现在,我们将测试的程序稍微改一下:

import java.io.File;
import java.net.URL;
import java.net.URLClassLoader;

public class Main {
    // 全局共享的外部类加载器
    private static ClassLoader classLoader = null;

    // 初始化类加载器
    synchronized public static void setClassLoader() throws Exception {
        if (classLoader != null) return;
        classLoader = new URLClassLoader(new URL[]{new File("D:\\test.jar").toURI().toURL()});

        // 注意这里设置了当前线程的上下文类加载器,这个类加载器会遗传给子线程
        Thread.currentThread().setContextClassLoader(classLoader);
    }

    // 测试类加载器
    public static void doTest() throws Exception {
        Class clazz = classLoader.loadClass("com.codelifeliwan.Test");
        clazz.getMethod("staticTest").invoke(null, null); // 调用静态的staticTest方法

        Object obj = clazz.getConstructor(null).newInstance();
        clazz.getMethod("test").invoke(obj, null); // 调用非静态的test方法

        System.out.println("=================================================\n");
    }

    public static void main(String[] args) throws Exception {
        new Thread(new MyRunnable()).start();
        Thread.sleep(1000); // 为了避免打印混乱
        new Thread(new MyRunnable()).start();
        Thread.sleep(1000); // 为了避免打印混乱
    }

    public static class MyRunnable implements Runnable {

        @Override
        public void run() {
            try {
                setClassLoader();
                doTest();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
}

我们先来看输出结果:

----------------------BEGIN staticTest--------------------
this is thread:14
ContextClassLoader:java.net.URLClassLoader@24912ef7
ClassLoader:jdk.internal.loader.ClassLoaders$AppClassLoader@3fee733d
----------------------BEGIN test--------------------
this is thread:14
ContextClassLoader:java.net.URLClassLoader@24912ef7
ClassLoader:jdk.internal.loader.ClassLoaders$AppClassLoader@3fee733d
=================================================

----------------------BEGIN staticTest--------------------
this is thread:15
ContextClassLoader:jdk.internal.loader.ClassLoaders$AppClassLoader@3fee733d
ClassLoader:jdk.internal.loader.ClassLoaders$AppClassLoader@3fee733d
----------------------BEGIN test--------------------
this is thread:15
ContextClassLoader:jdk.internal.loader.ClassLoaders$AppClassLoader@3fee733d
ClassLoader:jdk.internal.loader.ClassLoaders$AppClassLoader@3fee733d
=================================================

我们分别开了14和15两个线程,在14线程中设置了线程的上下文类加载器,那么可以看到,两个线程的ContextClassLoader结果是不一样的,线程设置的上下文类加载器可以遗传到子线程中,然后在子线程中可以使用对应的类加载器来加载其他的程序。

注意:其实,线程上下文类加载器更应该叫做线程下文类加载器,加载器只会遗传给子线程,对父线程和兄弟线程没有影响。上面的输出结果说明了这一点。

为了说明线程上下文类加载器会遗传到子线程,我们把初始化类加载器的工作放到主线程中:

import java.io.File;
import java.net.URL;
import java.net.URLClassLoader;

public class Main {
    // 全局共享的外部类加载器
    private static ClassLoader classLoader = null;

    // 初始化类加载器
    synchronized public static void setClassLoader() throws Exception {
        if (classLoader != null) return;
        classLoader = new URLClassLoader(new URL[]{new File("D:\\test.jar").toURI().toURL()});

        // 注意这里设置了当前线程的上下文类加载器,这个类加载器会遗传给子线程
        Thread.currentThread().setContextClassLoader(classLoader);
    }

    // 测试类加载器
    public static void doTest() throws Exception {
        Class clazz = classLoader.loadClass("com.codelifeliwan.Test");
        clazz.getMethod("staticTest").invoke(null, null); // 调用静态的staticTest方法

        Object obj = clazz.getConstructor(null).newInstance();
        clazz.getMethod("test").invoke(obj, null); // 调用非静态的test方法

        System.out.println("=================================================\n");
    }

    public static void main(String[] args) throws Exception {
        setClassLoader(); // 初始化类加载器放在主线程

        new Thread(new MyRunnable()).start();
        Thread.sleep(1000); // 为了避免打印混乱
        new Thread(new MyRunnable()).start();
        Thread.sleep(1000); // 为了避免打印混乱
    }

    public static class MyRunnable implements Runnable {

        @Override
        public void run() {
            try {
                doTest();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
}

然后会输出结果:

----------------------BEGIN staticTest--------------------
this is thread:14
ContextClassLoader:java.net.URLClassLoader@b4c966a
ClassLoader:jdk.internal.loader.ClassLoaders$AppClassLoader@3fee733d
----------------------BEGIN test--------------------
this is thread:14
ContextClassLoader:java.net.URLClassLoader@b4c966a
ClassLoader:jdk.internal.loader.ClassLoaders$AppClassLoader@3fee733d
=================================================

----------------------BEGIN staticTest--------------------
this is thread:15
ContextClassLoader:java.net.URLClassLoader@b4c966a
ClassLoader:jdk.internal.loader.ClassLoaders$AppClassLoader@3fee733d
----------------------BEGIN test--------------------
this is thread:15
ContextClassLoader:java.net.URLClassLoader@b4c966a
ClassLoader:jdk.internal.loader.ClassLoaders$AppClassLoader@3fee733d
=================================================

JDBC的驱动就是使用线程上下文类加载器,读者可自行查阅资料

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343