开发者学堂课程【分布式协调系统 Zookeeper 快速入门:判断节点是否存在】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/97/detail/1594
判断节点是否存在
//判断 znode 是否存在。
@Testv
public void exist() throws Exception {
Stat stat = zkClient. exists ("/eclipse", false) ;
System. out .println(stat == null ? "not exist" :"exist") ;