What is the difference between a thread’s context class loader and a normal class loader?
That is, if Thread.currentThread().getContextClassLoader()
and getClass().getClassLoader()
return different class loader objects, which one will be used?
What is the difference between a thread’s context class loader and a normal class loader?
That is, if Thread.currentThread().getContextClassLoader()
and getClass().getClassLoader()
return different class loader objects, which one will be used?