Abstract Method Error

后端 未结 9 2012
你的背包
你的背包 2020-11-30 10:15

I am working on a project in netbeans that when I launch it using the glassfish 3.1.2.Everything works fine.But when i call the /invite url which is mapped to following meth

9条回答
  •  清歌不尽
    2020-11-30 11:02

    This error occurs because an abstract method is called without actual implementation. It usually happens after some library is upgraded while some is not. The dependencies are missing somehow.

    Hence please check whether all library upgrades complete successfully.

    Here is a good example and demonstration on how an AbstractMethodError can occur.

提交回复
热议问题