服务消费者调用报Failed to check the status of the service . No provider available for the service 这个问题 ,dubboadmin上边看服务正常启动 ,报错信息如下:
Exception in thread “main” org.springframework.: Error creating bean with name ‘demoService’: FactoryBean threw exception on object creation; nested exception is : Failed to check the status of the service .dubbo.. No provider available for the service from the url zookeeper://127.0.0.1:2181/?application=demo-consumer&dubbo=2.5.3&interface=&methods=sayHello&pid=98896&side=consumer×tamp=1565446380941 to the consumer 192.168.0.107 use dubbo version 2.5.3
at (:178)
at (:101)
at (:1647)
at (:1215)
at (:257)
at (:199)
at (:1085)
at (:10)
Caused by: : Failed to check the status of the service . No provider available for the service from the url zookeeper://127.0.0.1:2181/?application=demo-consumer&dubbo=2.5.3&interface=&methods=sayHello&pid=98896&side=consumer×tamp=1565446380941 to the consumer 192.168.0.107 use dubbo version 2.5.3
at (:420)
at (:300)
at (:138)
at (:65)
at (:171)
… 7 more
Process finished with exit code 1
问题解析:
可能出错的地方:
1、
提供者的XML配置如下:
<!--声明需要暴露的服务接口 version是服务的版本号dubbo只找对应版本号的服务提供者进行调用 timeout 超时时间 超过时间过报错-->
<dubbo:service interface="" ref="demoService" version="1.0" timeout="5000"/>
- 1
- 2
消费者的XML配置:
<dubbo:reference interface="" version="1.0"/>
- 1
经过反复查找原因终于锁定了生产者XML和消费者文件中的version=“1.0”
教训:如果生产者设定了服务的版本,消费者一定要提供相应的版本号;
如果生产者不设定了服务的版本,消费者一定不设置版本号;
两者必须保持一致;
2、如果中dubbo去掉了spring的配置
中加入spring-context对应的jar包
3、在网上有的说可能与服务提供者的@Service引入的jar包有关,经过本人测试,如果是使用xml的配置
加不加@Service这个注解不影响正常调用,即使加了@service注解,引入import ;或者import ;不影响,都可以正常调用;
另外重写的方法加不加@Override注解也不影响