zookeeper(06)——zookeeper的javaAPI

Zookeeper 是在 Java 中客户端主类,负责建立与 zookeeper 集群的会话,并提供方法进行操作。org.apache.zookeeper.Watcher
Watcher 接口表示一个标准的事件处理器,其定义了事件通知相关的逻辑,包含 KeeperState 和 EventType 两个枚举类,分别代表了通知状态和事件类型,同时定义了事件的回调方法:process(WatchedEvent event)。
process 方法是 Watcher 接口中的一个回调方法,当 ZooKeeper 向客户端发送一个 Watcher 事件通知时,客户端就会对相应的process 方法进行回调,从而实现对事件的处理。

创建java工程,导入jar包

创建maven java工程,导入jar包

<dependencies>
       <dependency>
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-framework</artifactId>
            <version>2.12.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-recipes</artifactId>
            <version>2.12.0</version>
        </dependency>
       <dependency>
           <groupId>com.google.collections</groupId>
           <artifactId>google-collections</artifactId>
           <version>1.0</version>
       </dependency>
  </dependencies>
  <build>
       <plugins>
           <!-- java编译插件 -->
           <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-compiler-plugin</artifactId>
              <version>3.2</version>
              <configuration>
                  <source>1.8</source>
                  <target>1.8</target>
                  <encoding>UTF-8</encoding>
              </configuration>
           </plugin>
       </plugins>
    </build>

节点的操作

创建永久节点
    @Test
    public void createNode() throws Exception {
       RetryPolicy retryPolicy = new  ExponentialBackoffRetry(1000, 1);
//获取客户端对象
       CuratorFramework client = CuratorFrameworkFactory.newClient("192.168.52.100:2181,192.168.52.110:2181,192.168.52.120:2181", 1000, 1000, retryPolicy);
//调用start开启客户端操作
       client.start();
    //通过create来进行创建节点,并且需要指定节点类型
    client.create().creatingParentsIfNeeded().withMode(CreateMode.PERSISTENT).forPath("/hello3/world");
client.close();
    }
节点数据查询
   @Test
    public void updateNode() throws Exception {
       RetryPolicy retryPolicy = new  ExponentialBackoffRetry(3000, 1);
       CuratorFramework client = CuratorFrameworkFactory.newClient("node01:2181,node02:2181,node03:2181", 3000, 3000, retryPolicy);
       client.start();
       byte[] forPath = client.getData().forPath("/hello5");
       System.out.println(new String(forPath));
       client.close();
    }
节点watch机制
    @Test
    public void watchNode() throws Exception {
       RetryPolicy policy = new ExponentialBackoffRetry(3000, 3);
       CuratorFramework client = CuratorFrameworkFactory.newClient("node01:2181,node02:2181,node03:2181", policy);
       client.start();
       // ExecutorService pool = Executors.newCachedThreadPool(); 
            //设置节点的cache 
            TreeCache treeCache = new TreeCache(client, "/hello5"); 
            //设置监听器和处理过程 
            treeCache.getListenable().addListener(new TreeCacheListener() { 
                @Override 
                public void childEvent(CuratorFramework client, TreeCacheEvent event) throws Exception { 
                    ChildData data = event.getData(); 
                    if(data !=null){ 
                        switch (event.getType()) { 
                        case NODE_ADDED: 
                            System.out.println("NODE_ADDED : "+ data.getPath() +"  数据:"+ new String(data.getData())); 
                            break; 
                        case NODE_REMOVED: 
                            System.out.println("NODE_REMOVED : "+ data.getPath() +"  数据:"+ new String(data.getData())); 
                            break; 
                        case NODE_UPDATED: 
                            System.out.println("NODE_UPDATED : "+ data.getPath() +"  数据:"+ new String(data.getData())); 
                            break;
                        default: 
                            break; 
                        } 
                    }else{ 
                        System.out.println( "data is null : "+ event.getType()); 
                    } 
                } 
            }); 
            //开始监听 
            treeCache.start(); 
            Thread.sleep(50000000);
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值