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

I am getting a NoClassDefFoundError when I run my Java application. How do I fix it?

share|improve this question

closed as not a real question by casperOne Jan 30 '12 at 18:01

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

7 Answers

up vote 18 down vote accepted

This is caused when there is a class file that your code depends on and it is present at compile time but not found at runtime. Look for differences in your build time and runtime classpaths.

share|improve this answer

While it's possible that this is due to a classpath mismatch between compile-time and run-time, it's not necessarily true.

It is important to keep two or three different exceptions strait in our head in this case:

  1. java.lang.ClassNotFoundException This exception indicates that the class was not found on the classpath. This indicates that we were trying to load the class definition, and the class did not exist on the classpath.

  2. java.lang.NoClassDefFoundError This exception indicates that the JVM looked in its internal class definition data structure for the definition of a class and did not find it. This is different than saying that it could not be loaded from the classpath. Usually this indicates that we previously attempted to load a class from the classpath, but it failed for some reason - now we're trying again, but we're not even going to try to load it, because we failed loading it earlier. The earlier failure could be a ClassNotFoundException or an ExceptionInInitializerError (indicating a failure in the static initialization block) or any number of other problems. The point is, a NoClassDefFoundError is not necessarily a classpath problem.

share|improve this answer
This is helpful, but I'm confused by "now we're trying again, but we're not even going to try"; what is being tried, and what is not? – Lord Torgamus Oct 23 '12 at 14:44
Thanks for mentioning the cause of a NoClassDefFoundError, this helped me a lot! In my case an ExceptionInInitializerError was thrown before, that's how I found out about errors in static blocks. – Thomas Feb 21 at 12:05

I have found that sometimes I get a NoClassDefFound error when code is compiled with an incompatible version of the class found at runtime. The specific instance I recall is with the apache axis library. There were actually 2 versions on my runtime classpath and it was picking up the out of date and incompatible version and not the correct one, causing a NoClassDefFound error. This was in a command line app where I was using a command similar to this.

set classpath=%classpath%;axis.jar

I was able to get it to pick up the proper version by using:

set classpath=axis.jar;%classpath%;
share|improve this answer

This is almost always caused by an incorrect Classpath setting. Make sure the Jar file containing the class Java is complaining about is in the Classpath.

share|improve this answer

I believe it can also happen if you don't run your java program with the correct syntax. For instance, you have to call your class from the root bin folder with the full package name (ie. my.package.myClass).

I'd be more specific if I could but I'm not much of a java guy. I just remember messing this up a few times.

share|improve this answer

Show the line of code where the errors originating from, then we might even tell you what you are missing

share|improve this answer

while running a java application, the JVM looks for the class file inside the classpath variable. If it doesn't find that in that classpath, then it fires the NOClassDefFound Error.

share|improve this answer

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