vote up 2 vote down star

Can Thread.getContextClassLoader() be null ? The javadoc is not really clear. Should a library take this case into account ?

Update: the reason I asked is that beansbinding.dev.java.net dus not work in this case (and my code does setContextClassLoader(null)

flag

25% accept rate

2 Answers

vote up 3 vote down check

Java threads created from JNI code in a non-java thread have null ContextClassloader unless the creator explicitly sets it.

Also in such context Thread.currentThread() returns null.

link|flag
vote up 4 vote down

Yes you should, someone could have called Thread.setContextClassLoader(null) and your library IMO should be able to deal with that.

link|flag
That is a really nasty thing to do. Even classes from installed extensions wont be found with that thread context class loader. – Tom Hawtin - tackline Oct 23 '08 at 13:04
I don't see why that would be nasty. – Steven Devijver May 5 at 20:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.