How do I fix a NoSuchMethodError?

前端 未结 29 3557
孤独总比滥情好
孤独总比滥情好 2020-11-21 05:08

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

29条回答
  •  忘了有多久
    2020-11-21 05:43

    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.

提交回复
热议问题