I'm getting a NoSuchMethodError
error when running my Java program. What's wrong and how do I fix it?

- 40,830
- 17
- 95
- 117

- 22,808
- 14
- 54
- 57
-
13In Netbeans: Right click on project in Projects tab, use "Clean and Build". Solved it for me. – Heinzlmaen Jan 20 '16 at 12:50
-
6Also in Intellij Idea, rebuild solves the problem sometimes – Hawk Nov 28 '18 at 13:57
-
3This article is very helpful for this issue https://reflectoring.io/nosuchmethod/ – Michael Smith Jul 22 '19 at 16:53
-
https://reflectoring.io/nosuchmethod/ https://www.baeldung.com/java-nosuchmethod-error https://www.javatpoint.com/java-lang-nosuchmethoderror https://www.geeksforgeeks.org/how-to-solve-java-lang-nosuchmethoderror-in-java/ https://stackoverflow.com/questions/75880410/java-lang-nosuchmethoderror-org-apache-hadoop-hive-common-fileutils-mkdir-while https://stackoverflow.com/questions/75472043/error-java-lang-nosuchmethoderror-scala-tools-nsc-reporters-reporter-scala-to – Dmytro Mitin Mar 30 '23 at 03:26
33 Answers
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.

- 3,287
- 2
- 27
- 28
-
4We recently discovered the cause of one of these and it turned out the build process was putting class files in place before the java server was shut down, and we hit this because the java server hadn't loaded some classes, and then it did load some but it got these new ones, and since the new code referred to methods that the old classes didn't have... bingo, NoSuchMethodError – vazor May 06 '15 at 16:30
-
1"Look at the stack trace..." - Well, I almost always go and check the last `Caused by` section in the stack trace to find the culprit class/jar – KrishPrabakar Jul 14 '20 at 11:55
-
@Vetle, does that mean, imported classes are dynamically loaded in Java in contrast to static loading in C? – Sourav Kannantha B Jul 15 '21 at 09:22
I was having your problem, and this is how I fixed it. The following steps are a working way to add a library. I had done the first two steps right, but I hadn't done the last one by dragging the ".jar" file direct from the file system into the "lib" folder on my eclipse project. Additionally, I had to remove the previous version of the library from both the build path and the "lib" folder.
Step 1 - Add .jar to build path
Step 2 - Associate sources and javadocs (optional)
Step 3 - Actually drag .jar file into "lib" folder (not optional)

- 46,613
- 43
- 151
- 237

- 48,402
- 65
- 188
- 258
-
82+1 for "Everybody expects you to know how to use it and if you don't they downvote your question." – Vikram Jun 19 '12 at 20:36
Note that in the case of reflection, you get an NoSuchMethodException
, while with non-reflective code, you get NoSuchMethodError
. I tend to go looking in very different places when confronted with one versus the other.

- 265,237
- 58
- 395
- 493
-
3In other words, you are saying that if you are using reflection to get a method on a class and the method is not found, you get a NoSuchMethodException. But if you are in a scenario when you compiled your code against some libs and on the server you have other libs (maybe newer maybe older) then you get the NoSuchMethodError. Correct me if I'm wrong. – Victor May 21 '20 at 08:32
If you have access to change the JVM parameters, adding verbose output should allow you to see what classes are being loaded from which JAR files.
java -verbose:class <other args>
When your program is run, the JVM should dump to standard out information such as:
...
[Loaded junit.framework.Assert from file:/C:/Program%20Files/junit3.8.2/junit.jar]
...

- 138,234
- 66
- 282
- 345
-
4+1 Brilliant! I solved a nasty little problem by using this method, thanks. This is an excellent way to discover when classes have sneaked their way onto a classpath somehow. – Duncan Jones Oct 15 '14 at 11:59
-
1I don't think any other answers are justified...this is how you figure out where the wrong dependency is loaded from, which is the essence of the question...saved my (second) day :) – nenea Sep 03 '20 at 11:44
-
@matt Does that mean, imported classes are dynamically loaded in Java in contrast to static loading in C? – Sourav Kannantha B Jul 15 '21 at 09:23
If using Maven or another framework, and you get this error almost randomly, try a clean install like...
clean install
This is especially likely to work if you wrote the object and you know it has the method.

- 18,769
- 10
- 104
- 133
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.

- 22,808
- 14
- 54
- 57
-
2Actually, this feels more like an issue that crops up for Java programmers who are using any Java development framework: Maven, NetBeans, and Apache Ant, as you can see from all the answers here. – HoldOffHunger Mar 17 '16 at 15:22
I had the same error:
Exception in thread "main" java.lang.NoSuchMethodError: com.fasterxml.jackson.core.JsonGenerator.writeStartObject(Ljava/lang/Object;)V
at com.fasterxml.jackson.databind.ser.BeanSerializer.serialize(BeanSerializer.java:151)
at com.fasterxml.jackson.databind.ser.DefaultSerializerProvider.serializeValue(DefaultSerializerProvider.java:292)
at com.fasterxml.jackson.databind.ObjectMapper._configAndWriteValue(ObjectMapper.java:3681)
at com.fasterxml.jackson.databind.ObjectMapper.writeValueAsString(ObjectMapper.java:3057)
To solve it I checked, firstly, Module Dependency Diagram (click in your POM the combination -> Ctrl+Alt+Shift+U
or right click in your POM -> Maven -> Show dependencies
) to understand where exactly was the conflict between libraries (Intelij IDEA). In my particular case, I had different versions of Jackson dependencies.
1) So, I added directly in my POM of the project explicitly the highest version - 2.8.7 of these two.
In properties:
<jackson.version>2.8.7</jackson.version>
And as dependency:
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
2) But also it can be solved using Dependency Exclusions.
By the same principle as below in example:
<dependency>
<groupId>group-a</groupId>
<artifactId>artifact-a</artifactId>
<version>1.0</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
Dependency with unwanted version will be excluded from your project.

- 5,872
- 9
- 36
- 76
Why anybody doesn't mention dependency conflicts? This common problem can be related to included dependency jars with different versions. Detailed explanation and solution: https://dzone.com/articles/solving-dependency-conflicts-in-maven
Short answer;
Add this maven dependency;
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<configuration>
<rules>
<dependencyConvergence />
</rules>
</configuration>
</plugin>
Then run this command;
mvn enforcer:enforce
Maybe this is the cause your the issue you faced.

- 101
- 1
- 5
-
Ahh! this helped me, was looking in the wrong direction after all. Thanks, man !!! – Girish Nair Nov 30 '22 at 10:16
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.
- tomcat/common/lib
- mywebapp/WEB-INF/lib

- 35,194
- 20
- 73
- 86
For me it happened because I changed argument type in function, from Object a, to String a. I could resolve it with clean and build again

- 51
- 1
- 1
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 Class.getDeclaredMethod("someMethodName", .....)
) then any time that method name changes, such as during a refactor, you will need to remember to update the parameters to the reflection method to match the new method signature, or the getDeclaredMethod
call will throw a NoSuchMethodException
.
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 TestUtilities
class to extract fields for test verification. (Generally with legacy code that wasn't designed with unit testing in mind.)

- 16,483
- 15
- 59
- 70
-
1The question was about `NoSuchMethodError`, not `NoSuchMethodException` – Dmytro Mitin Mar 30 '23 at 02:43
-
Oh, good call out! I didn't know both of those existed when I wrote this 15 years ago, and assumed it was a typo. – rcreswick Mar 31 '23 at 05:12
In my case I had a multi module project and scenario was like com.xyz.TestClass
was in module A
and as well as in module B
and module A
was dependent on module B
. So while creating a assembly jar I think only one version of class was retained if that doesn't have the invoked method then I was getting NoSuchMethodError
runtime exception, but compilation was fine.
Related : https://reflectoring.io/nosuchmethod/

- 2,203
- 4
- 25
- 23
It means the respective method is not present in the class:
- If you are using jar then decompile and check if the respective version of jar have proper class.
- Check if you have compiled proper class from your source.

- 7,173
- 6
- 33
- 61

- 94
- 1
- 4
I have just solved this error by restarting my Eclipse and run the applcation. The reason for my case may because I replace my source files without closing my project or Eclipse. Which caused different version of classes I was using.

- 119
- 5
Try this way: remove all .class files under your project directories (and, of course, all subdirectories). Rebuild.
Sometimes mvn clean
(if you are using maven) does not clean .class files manually created by javac
. And those old files contain old signatures, leading to NoSuchMethodError
.

- 51
- 5
Just adding to existing answers. I was facing this issue with tomcat in eclipse. I had changed one class and did following steps,
Cleaned and built the project in eclpise
mvn clean install
- Restarted tomcat
Still I was facing same error. Then I cleaned tomcat, cleaned tomcat working directory and restarted server and my issue is gone. Hope this helps someone

- 6,868
- 4
- 27
- 41
-
God damn it, thanks man, you are the best man, who solves the problem among their people. – anar1501 Jun 15 '21 at 23:58
To answer the original question. According to java docs here:
"NoSuchMethodError" Thrown if an application tries to call a specified method of a class (either static or instance), and that class no longer has a definition of that method.
Normally, this error is caught by the compiler; this error can only occur at run time if the definition of a class has incompatibly changed.
- If it happens in the run time, check the class containing the method is in class path.
- Check if you have added new version of JAR and the method is compatible.

- 15,774
- 6
- 47
- 88

- 2,151
- 2
- 15
- 9
These problems are caused by the use of the same object at the same two classes. Objects used does not contain new method has been added that the new object class contains.
ex:
filenotnull=/DayMoreConfig.conf
16-07-2015 05:02:10:ussdgw-1: Open TCP/IP connection to SMSC: 10.149.96.66 at 2775
16-07-2015 05:02:10:ussdgw-1: Bind request: (bindreq: (pdu: 0 9 0 [1]) 900 900 GEN 52 (addrrang: 0 0 2000) )
Exception in thread "main" java.lang.NoSuchMethodError: gateway.smpp.PDUEventListener.<init>(Lgateway/smpp/USSDClient;)V
at gateway.smpp.USSDClient.bind(USSDClient.java:139)
at gateway.USSDGW.initSmppConnection(USSDGW.java:274)
at gateway.USSDGW.<init>(USSDGW.java:184)
at com.vinaphone.app.ttn.USSDDayMore.main(USSDDayMore.java:40)
-bash-3.00$
These problems are caused by the concomitant 02 similar class (1 in src, 1 in jar file here is gateway.jar)

- 5,088
- 10
- 35
- 43
I fixed this problem in Eclipse by renaming a Junit test file.
In my Eclipse work space I have an App project and a Test project.
The Test project has the App project as a required project on the build path.
Started getting the NoSuchMethodError.
Then I realized the class in the Test project had the same name as the class in the App project.
App/
src/
com.example/
Projection.java
Test/
src/
com.example/
Projection.java
After renaming the Test to the correct name "ProjectionTest.java" the exception went away.

- 21
- 1
-
I had a similar issue. I had a dependency class with the same complete canonical name. After renaming the exception went away. – moralejaSinCuentoNiProverbio Nov 08 '18 at 14:32
NoSuchMethodError : I have spend couple of hours fixing this issue, finally fixed it by just renaming package name , clean and build ... Try clean build first if it doesn't works try renaming the class name or package name and clean build...it should be fixed. Good luck.

- 797
- 7
- 17
I ran into a similar problem when I was changing method signatures in my application. Cleaning and rebuilding my project resolved the "NoSuchMethodError".

- 489
- 4
- 5
I've had the same problem. This is also caused when there is an ambiguity in classes. My program was trying to invoke a method which was present in two JAR files present in the same location / class path. Delete one JAR file or execute your code such that only one JAR file is used. Check that you are not using same JAR or different versions of the same JAR that contain the same class.
DISP_E_EXCEPTION [step] [] [Z-JAVA-105 Java exception java.lang.NoSuchMethodError(com.example.yourmethod)]

- 15,774
- 6
- 47
- 88

- 164
- 1
- 5
Above answer explains very well ..just to add one thing If you are using using eclipse use ctrl+shift+T and enter package structure of class (e.g. : gateway.smpp.PDUEventListener ), you will find all jars/projects where it's present. Remove unnecessary jars from classpath or add above in class path. Now it will pick up correct one.

- 113
- 2
- 9
I ran into similar issue.
Caused by: java.lang.NoSuchMethodError: com.abc.Employee.getEmpId()I
Finally I identified the root cause was changing the data type of variable.
Employee.java
--> Contains the variable (EmpId
) whose Data Type has been changed fromint
toString
.ReportGeneration.java
--> Retrieves the value using the getter,getEmpId()
.
We are supposed to rebundle the jar by including only the modified classes. As there was no change in ReportGeneration.java
I was only including the Employee.class
in Jar file. I had to include the ReportGeneration.class
file in the jar to solve the issue.

- 582
- 2
- 5
- 18
Most of the times java.lang.NoSuchMethodError is caught be compiler but sometimes it can occur at runtime. If this error occurs at runtime then the only reason could be the change in the class structure that made it incompatible.
Best Explanation: https://www.journaldev.com/14538/java-lang-nosuchmethoderror

- 49,289
- 6
- 73
- 138

- 779
- 11
- 15
I've encountered this error too.
My problem was that I've changed a method's signature, something like
void invest(Currency money){...}
into
void invest(Euro money){...}
This method was invoked from a context similar to
public static void main(String args[]) {
Bank myBank = new Bank();
Euro capital = new Euro();
myBank.invest(capital);
}
The compiler was silent with regard to warnings/ errors, as capital is both Currency as well as Euro.
The problem appeared due to the fact that I only compiled the class in which the method was defined - Bank, but not the class from which the method is being called from, which contains the main() method.
This issue is not something you might encounter too often, as most frequently the project is rebuilt mannually or a Build action is triggered automatically, instead of just compiling the one modified class.
My usecase was that I generated a .jar file which was to be used as a hotfix, that did not contain the App.class as this was not modified. It made sense to me not to include it as I kept the initial argument's base class trough inheritance.
The thing is, when you compile a class, the resulting bytecode is kind of static, in other words, it's a hard-reference.
The original disassembled bytecode (generated with the javap tool) looks like this:
#7 = Methodref #2.#22 // Bank.invest:(LCurrency;)V
After the ClassLoader loads the new compiled Bank.class, it will not find such a method, it appears as if it was removed and not changed, thus the named error.
Hope this helps.

- 61
- 5
The problem in my case was having two versions of the same library in the build path. The older version of the library didn't have the function, and newer one did.

- 2,647
- 1
- 26
- 32
I had a similar problem with my Gradle Project using Intelij. I solved it by deleting the .gradle (see screenshot below) Package and rebuilding the Project. .gradle Package

- 61
- 4
I had faced the same issue. I changed the return type of one method and ran the test code of that one class. That is when I faced this NoSuchMethodError
. As a solution, I ran the maven builds on the entire repository once, before running the test code again. The issue got resolved in the next single test run.

- 39
- 1
- 4
One such instance where this error occurs: I happened to make a silly mistake of accessing private static member variables in a non static method. Changing the method to static solved the problem.

- 15,127
- 10
- 89
- 104
For me, none of the workarounds mentioned here did not work.
Updating
mockito-core
from3.3.3
to3.4.3
fixed the problem.
I think it is caused by that MockitoAnnotations.initMock() method is deprecated and replaced with MockitoAnnotations.openMocks() in Mockito JUnit 5 version 3.
On the other hand, it may be worthy to check the local Maven Repository and delete unnecessary jars that may cause conflict. But when applying this step, be attention and don't delete manually installed ones (or get backup before the operation).

- 11,299
- 6
- 63
- 63
For my case. I had to check other referenced methods. I needed to change the method signature everywhere to be the same as newly updated method signature.
For example, changing the return type of a particular method from collection to an array list.

- 186
- 1
- 4
- 18
I solved the problem when using Quarkus by removing the target-folder and restart the program.

- 221
- 2
- 9