本文主要是介绍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,
这篇关于com.alibaba.dubbo.common.bytecode.NoSuchMethodException: Method not found.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!