判断节点是否存在|学习笔记

开发者学堂课程【分布式协调系统 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") ;

上一篇:jQuery_DOM 属性下|学习笔记


下一篇:创建一个节点|学习笔记