Hello,朋友们。我又来了。这次和大家分享下Zookeeper的API调用!!!

    

    一起学习,一起进步。继续沉淀,慢慢强大。希望这文章对您有帮助。若有写的不好的地方,欢迎评论给建议哈!

    初写博客不久,我是杨展浩。这是我的第九篇博客。加油!!!

   

    在此说明下,博主采用的开发工具是idea!!!采用maven项目结构!!!

    添加的maven的依赖:

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <!-- 添加log4j依赖 -->
    <dependency>
      <groupId>org.apache.logging.log4j</groupId>
      <artifactId>log4j-core</artifactId>
      <version>2.8.2</version>
    </dependency>
    <!-- 添加zookeeper依赖 -->
    <dependency>
      <groupId>org.apache.zookeeper</groupId>
      <artifactId>zookeeper</artifactId>
      <version>3.4.14</version>
    </dependency>
  </dependencies>

    Zookeeper的API调用:

    1、客户端连接服务器调用(实例化Zook对象):

    分布式技术 -- ZooKeeper的API使用-LMLPHP

    出现红色箭头的信息,代表连接服务器集群成功!!!

分布式技术 -- ZooKeeper的API使用-LMLPHP

    2、创建新节点

分布式技术 -- ZooKeeper的API使用-LMLPHP

分布式技术 -- ZooKeeper的API使用-LMLPHP

    3、获取节点并且监听节点数据变化

分布式技术 -- ZooKeeper的API使用-LMLPHP

分布式技术 -- ZooKeeper的API使用-LMLPHP

    4、判断节点是否存在

分布式技术 -- ZooKeeper的API使用-LMLPHP

分布式技术 -- ZooKeeper的API使用-LMLPHP

09-08 01:32