com.alibaba.dubbo.common.bytecode.NoSuchMethodException: Method not found.

在使用dubbo的时候,有时会出现如上错误:

com.alibaba.dubbo.common.bytecode.NoSuchMethodException: Method not found.


解决办法:

1、确保consumer引入包含当前方法的类   service  或者  manager。。

2、如果consumer没有问题,那考虑provider   我就是在provider的地方出错了,我的一个service在两个provider都提供了,所以会出如上错误,只要将其中一个没用的provider中的service删除就好了



报错信息如下:

[DUBBO]Although retry the method XXX in the service XXXService  was successful by the provider127.0.0.1:端口1 , but there have been failed providers [127.0.0.1:端口2] (1/2) from the registry 127.0.0.1:2181 on the consumer 127.0.0.1 using the dubboversion 2.5.3. Last error is: Failed to invoke remote method: query, 


你可能感兴趣的:(Dubbo)