线程的上下文类加载器和普通的类加载器之间的区别 [英] Difference between thread's context class loader and normal classloader

查看:236
本文介绍了线程的上下文类加载器和普通的类加载器之间的区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

线程的上下文类加载器和普通的类加载器有什么区别?

也就是说,如果 Thread.currentThread()。getContextClassLoader() getClass()。getClassLoader()返回不同的类加载器对象,将使用哪一个?

That is, if Thread.currentThread().getContextClassLoader() and getClass().getClassLoader() return different class loader objects, which one will be used?

推荐答案

每个类都将使用自己的类加载器来加载其他类。因此,如果 ClassA.class 引用 ClassB.class ,那么 ClassB 需要在 ClassA 或其父类的类加载器的类路径上。

Each class will use its own classloader to load other classes. So if ClassA.class references ClassB.class then ClassB needs to be on the classpath of the classloader of ClassA, or its parents.

线程上下文类加载器是当前线程的当前类加载器。可以从 ClassLoaderC 中的类创建对象,然后将其传递给 ClassLoaderD 所拥有的线程。在这种情况下,如果对象需要加载其自己的类加载器上不可用的资源,则需要直接使用 Thread.currentThread()。getContextClassLoader()

The thread context classloader is the current classloader for the current thread. An object can be created from a class in ClassLoaderC and then passed to a thread owned by ClassLoaderD. In this case the object needs to use Thread.currentThread().getContextClassLoader() directly if it wants to load resources that are not available on its own classloader.

这篇关于线程的上下文类加载器和普通的类加载器之间的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆