SpringBoot集成Curator实现Zookeeper基本操作

本文主要是介绍SpringBoot集成Curator实现Zookeeper基本操作,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

系列文章目录


文章目录

  • 系列文章目录
  • 前言


前言

前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站,这篇文章男女通用,看懂了就去分享给你的码吧。
在这里插入图片描述


Zookeeper是一个Apache开源的分布式的应用,为系统架构提供协调服务。从设计模式角度来审视:该组件是一个基于观察者模式设计的框架,负责存储和管理数据,接受观察者的注册,一旦数据的状态发生变化,Zookeeper就将负责通知已经在Zookeeper上注册的观察者做出相应的反应,从而实现集群中类似Master/Slave管理模式。ZooKeeper的目标就是封装好复杂易出错的关键服务,将简单易用的接口和性能高效、功能稳定的系统提供给用户。
在这里插入图片描述
zookeeper安装单机模式

http://www.javacui.com/opensource/445.html

官网

https://curator.apache.org/releases.html#Current_Release

POM引入

<!--                      curator                      -->
<dependency><groupId>org.apache.curator</groupId><artifactId>curator-recipes</artifactId><version>5.2.0</version>
</dependency>
<!--                      fastjson                      -->
<dependency><groupId>com.alibaba</groupId><artifactId>fastjson</artifactId><version>1.2.79</version>
</dependency>

application.yml定义连接属性

server:port: 80
curator:connectString: 192.168.3.22:2181 # zookeeper 地址retryCount: 1 # 重试次数elapsedTimeMs: 2000 # 重试间隔时间sessionTimeoutMs: 60000 # session超时时间connectionTimeoutMs: 10000 # 连接超时时间

使用Springboot配置读取

package com.example.springboot.config;import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;/*** @Auther: Java小强* @Date: 2022/2/4 - 19:37* @Decsription: com.example.springboot.config* @Version: 1.0*/
@Data
@Component
@ConfigurationProperties(prefix = "curator")
public class CuratorConf {private int retryCount;private int elapsedTimeMs;private String connectString;private int sessionTimeoutMs;private int connectionTimeoutMs;
}

公用连接创建对象

package com.example.springboot.tool;import com.example.springboot.config.CuratorConf;
import org.apache.curator.framework.CuratorFramework;
import org.apache.curator.framework.CuratorFrameworkFactory;
import org.apache.curator.retry.RetryNTimes;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;/*** @Auther: Java小强* @Date: 2022/2/4 - 19:37* @Decsription: com.example.springboot.tool* @Version: 1.0*/
@Configuration
public class ZkConfiguration {@Autowiredprivate CuratorConf curatorConf;/*** 这里会自动调用一次start,请勿重复调用*/@Bean(initMethod = "start")public CuratorFramework curatorFramework() {return CuratorFrameworkFactory.newClient(curatorConf.getConnectString(),curatorConf.getSessionTimeoutMs(),curatorConf.getConnectionTimeoutMs(),new RetryNTimes(curatorConf.getRetryCount(), curatorConf.getElapsedTimeMs()));}}

编写测试类,实现各种基础操作,并挨个测试

package com.example.springboot;import com.alibaba.fastjson.JSON;
import com.example.springboot.tool.ZkConfiguration;
import org.apache.curator.framework.CuratorFramework;
import org.apache.curator.framework.api.BackgroundCallback;
import org.apache.curator.framework.api.CuratorEvent;
import org.apache.zookeeper.data.Stat;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;import java.nio.charset.StandardCharsets;
import java.util.List;/*** @Auther: Java小强* @Date: 2022/2/4 - 19:33* @Decsription: com.example.springboot* @Version: 1.0*/
@SpringBootTest(classes = Application.class)
public class CuratorTest {@Autowiredprivate ZkConfiguration zk;// 测试连接@Testvoid contextLoads() {CuratorFramework client= zk.curatorFramework();System.out.println(client.toString());}// 创建节点@Testvoid createPath() throws Exception{CuratorFramework client= zk.curatorFramework();// 父节点不存在则创建String path = client.create().creatingParentsIfNeeded().forPath("/javacui/p1" ,"Java小强博客".getBytes(StandardCharsets.UTF_8));System.out.println(path);byte[] data = client.getData().forPath("/javacui/p1");System.out.println(new String(data));}// 赋值,修改数据@Testvoid setData() throws Exception{CuratorFramework client = zk.curatorFramework();int version = 0; // 当前节点的版本信息Stat stat = new Stat();client.getData().storingStatIn(stat).forPath("/javacui/p1");version = stat.getVersion();// 如果版本信息不一致,说明当前数据被修改过,则修改失败程序报错client.setData().withVersion(version).forPath("/javacui/p1","Java崔的博客".getBytes(StandardCharsets.UTF_8));byte[] data = client.getData().forPath("/javacui/p1");System.out.println(new String(data));}// 查询节点@Testvoid getPath() throws Exception{CuratorFramework client= zk.curatorFramework();// 查内容byte[] data = client.getData().forPath("/javacui/p1");System.out.println(new String(data));// 查状态Stat stat = new Stat();client.getData().storingStatIn(stat).forPath("/javacui/p1");System.out.println(JSON.toJSONString(stat, true));}// 删除节点@Testvoid deletePath() throws Exception{CuratorFramework client= zk.curatorFramework();// deletingChildrenIfNeeded如果有子节点一并删除// guaranteed必须成功比如网络抖动时造成命令失败client.delete().guaranteed().deletingChildrenIfNeeded().inBackground(new BackgroundCallback() {@Overridepublic void processResult(CuratorFramework curatorFramework, CuratorEvent curatorEvent) throws Exception {System.out.println("删除成功");// { "path":"/javacui/p1","resultCode":0,"type":"DELETE"}System.out.println(JSON.toJSONString(curatorEvent, true));}}).forPath("/javacui/p1");}// 查询子节点@Testvoid getPaths() throws Exception{CuratorFramework client= zk.curatorFramework();List<String> paths = client.getChildren().forPath("/javacui");for(String p : paths){System.out.println(p);}}
}

这篇关于SpringBoot集成Curator实现Zookeeper基本操作的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/986543

相关文章

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

Java编译生成多个.class文件的原理和作用

《Java编译生成多个.class文件的原理和作用》作为一名经验丰富的开发者,在Java项目中执行编译后,可能会发现一个.java源文件有时会产生多个.class文件,从技术实现层面详细剖析这一现象... 目录一、内部类机制与.class文件生成成员内部类(常规内部类)局部内部类(方法内部类)匿名内部类二、

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

Springboot @Autowired和@Resource的区别解析

《Springboot@Autowired和@Resource的区别解析》@Resource是JDK提供的注解,只是Spring在实现上提供了这个注解的功能支持,本文给大家介绍Springboot@... 目录【一】定义【1】@Autowired【2】@Resource【二】区别【1】包含的属性不同【2】@

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

Java中的String.valueOf()和toString()方法区别小结

《Java中的String.valueOf()和toString()方法区别小结》字符串操作是开发者日常编程任务中不可或缺的一部分,转换为字符串是一种常见需求,其中最常见的就是String.value... 目录String.valueOf()方法方法定义方法实现使用示例使用场景toString()方法方法