Difference between thread#39;s context class loader and normal classloader(线程的上下文类加载器和普通类加载器的区别)
问题描述
线程的上下文类加载器和普通的类加载器有什么区别?
What is the difference between a thread's context class loader and a normal class loader?
即如果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.
这篇关于线程的上下文类加载器和普通类加载器的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:线程的上下文类加载器和普通类加载器的区别
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 降序排序:Java Map 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01