I am getting a NoClassDefFoundError when I run my Java application. How do I fix it?
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.
|
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. |
|||
|
|
|
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:
|
|||||
|
|
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.
I was able to get it to pick up the proper version by using:
|
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
Show the line of code where the errors originating from, then we might even tell you what you are missing |
|||
|
|
|
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. |
|||
|
|