Getting java.lang.AbstractMethodError on implemented method

后端 未结 3 997
无人共我
无人共我 2020-12-21 09:36

As the title states, I get a java.lang.AbstractMethodError on a method that is definitively implemented by my class. The complete error message is:



        
3条回答
  •  伪装坚强ぢ
    2020-12-21 10:10

    The problem was that the implementing class was not compiled correctly and the Ant script did not copy the correct class into the jar-file. I converted it to a maven project and now the method can be found.

提交回复
热议问题