zookeeper:问题记录

本地连接远程zookeeper,显示zookeeper not connected 连接失败

Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'consumerComponet': Injection of 
@Reference dependencies is failed; nested exception is java.lang.IllegalStateException: zookeeper not connected

在这里插入图片描述

解决方案:
设置 以下连接超时时间

dubbo.registry.timeout=10000000
dubbo.consumer.timeout=10000000

# 设置最大等待时间为10秒
dubbo.metadata-report.timeout=10000000

# 配置中心连接时间改为10秒
dubbo.config-center.timeout=10000000

参考资料1
参考资料2