Exception in thread "main" java.lang.IllegalStateException: Failed to check the status of the service com.sysu.service.SayHello. No provider available for the service com.sysu.service.SayHello from the url zookeeper://localhost:2181/com.alibaba.dubbo.registry.RegistryService?application=client&dubbo=2.6.1&interface=com.sysu.service.SayHello&methods=sayHello&owner=sysu&pid=115696®ister.ip=192.168.3.11&side=consumer×tamp=1701919304280 to the consumer 192.168.3.11 use dubbo version 2.6.1
at com.alibaba.dubbo.config.ReferenceConfig.createProxy(ReferenceConfig.java:422)
at com.alibaba.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:333)
at com.alibaba.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:163)
at com.sysu.Main.main(Main.java:31)
解决方法:
生产者和消费者的版本号需要一致。setVersion
文章讲述了在使用Dubbo框架时,由于生产者和消费者Dubbo版本不一致,导致`SayHello`服务的提供者无法从Zookeeper注册中心被消费者找到的错误。解决方法是确保生产和消费端的Dubbo版本号一致。
1484

被折叠的 条评论
为什么被折叠?



