Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Java How could getClass().getClassLoader() return null?

  • The jar the 'class' is located in is NOT located under common/lib.
  • The jar is NOT being boostrap-loaded.

The ClassLoader for all classes within the jar is null.

share|improve this question
2  
Is consulting the standard javadoc a lost art? – skaffman Aug 24 '09 at 20:07
insults are really not necessary – Randyaa Aug 24 '09 at 20:14
Apparently neither is consulting the docs... – carej Aug 24 '09 at 20:56

2 Answers

up vote 1 down vote accepted

Are you using any endorsed standards? I believe this would cause the classes to be loaded by the bootstrap class loader even though you may not be explicitly using -Xbootclasspath.

share|improve this answer

From the documentation...

public ClassLoader getClassLoader()

Returns the class loader for the class. Some implementations may use null to represent the bootstrap class loader. This method will return null in such implementations if this class was loaded by the bootstrap class loader.

...

If this object represents a primitive type or void, null is returned.

share|improve this answer
You would need to be running as a bootstrap class (e.g. using -Xbootclasspath/a: – Tom Hawtin - tackline Aug 24 '09 at 20:07
Thanks, I knew I was probably missing something mundane and over complicating the problem. Let's hope this leads to a solution to my REAL problem. – Randyaa Aug 24 '09 at 20:11
I'm trying to help another developer that's experiencing this issue. I was hoping this would solve it, but unfortunately it doesn't. They're not bootstrap-loading anything. Any other suggestions would be helpful. They're using Spring to load the class which is CALLING the code where the getClass().getClassLoader() returns null – Randyaa Aug 26 '09 at 19:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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