I'm getting a NoSuchMethodError when running my Java program. What's wrong and how do I fix it?
|
|
|
|
|
|
|
Without any more information it is difficult to pinpoint the problem, but the root cause is that you most likely have compiled a class against a different version of the class that is missing a method, than the one you are using when running it. Look at the stack trace ... If the exception appears when calling a method on an object in a library, you are most likely using separate versions of the library when compiling and running. Make sure you have the right version both places. If the exception appears when calling a method on objects instantiated by classes you made, then your build process seems to be faulty. Make sure the class files that you are actually running are updated when you compile. |
||
|
|
|
|
This is usually caused when using a build system like Apache Ant that only compiles java files when the java file is newer than the class file. If a method signature changes and classes were using the old version things may not be compiled correctly. The usual fix is to do a full rebuild (usually "ant clean" then "ant"). Sometimes this can also be caused when compiling against one version of a library but running against a different version. |
||
|
|
|
|
This can also be the result of using reflection. If you have code that reflects on a class and extracts a method by name (eg: with If this is the reason, then the stack trace should show the point that the reflection method is invoked, and you'll just need to update the parameters to match the actual method signature. In my experience, this comes up occasionally when unit testing private methods/fields, and using a |
||
|
|
|
|
Note that in the case of reflection, you get an |
||
|
|
|
|
If you are writing a webapp, ensure that you don't have conflicting versions of a jar in your container's global library directory and also in your app. You may not necessarily know which jar is being used by the classloader. e.g.
|
|||
|
|
|
|
If you have access to change the JVM parameters, adding verbose output should allow you to see what classes are being loaded from what JARs.
When your program is run, the JVM should dump to standard out information such as:
|
||
|
|
