SpringCloud框架zookeeper连接以及在客户端查看zookeeper节点信息

it2023-01-10  52

       在springcloud框架下使用zookeeper作为服务注册中心的一些知识点:        首先pom文件中要引入SpringBoot与zookeeper客户端的整合,但是在这里要排除exclusionsSpringboot自带的zookeeper版本,否则如果在centos系统中安装的zookeeper版本与SpringBoot提供的版本号如果不相同的话会报错,建议先排除掉然后引进与Centos安装的zookeeper相同版本号的zookeeper。(例如我这里在centos系统中安装的Zookeeper版本号是3.4.9)

<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-zookeeper-discovery</artifactId> <!--防止和centOs系统中的zookeeper冲突,先排除自带的zookeeper3.5.3版本--> <exclusions> <exclusion> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> </exclusion> </exclusions> </dependency>

       引进与安装的zookeeper相同版本号的依赖:这里需要注意一个细节,那就是要将zookeeper自带的self4j排除掉,否则会报self4j的一些错误。

<dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> <version>3.4.9</version> <exclusions> <exclusion> <artifactId>slf4j-log4j12</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> </dependency>

       然后在引进一些其他自己需要的依赖项即可,例如我这里又引进了web,actuator等一些依赖

<!--web和actuator模块几乎写在一块--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!--用于图形化显示和处理等--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>

       然后就是yml文件:定义端口号和服务名称,这是必不可少的,端口号就不用多说了,肯定不能与其他的端口号冲突,这个服务名称就是当你的服务注册进zookeeper时在zookeeper里边显示的名称。

#端口号 server: port: 8004 spring: #服务名称 application: name: cloud-provider-payment #使用zookeeper cloud: zookeeper: connect-string: 192.168.19.129:2181

       下面就是使用docker启动zookeeper以及查看zookeeper节点等信息:(使用的是centos7版本)

systemctl start docker #启动docker docker run --name myzookeeper -d -p2182:2182 zookeeper:3.4.9 #在docker中启动zookeeper docker ps #查找zookeeper的镜像idcontainer-id docker exec -it container-id /bin/bash #进入到镜像的文件中,container-id是上一步查询到的id cd bin #进入到bin目录中 ./zkCli.sh #进入到zookeeper中 ls /services #查看注册进zookeeper的服务列表。得到你注册进zookeeper的服务名称 ls /service/服务名称 #服务名称,也就是之前在yml文件中写的。得到一串id号 get /services/服务名称/id号 #查看服务信息。得到一串json串,这串json串保存着服务的一些信息,可以通过json在线解析查看
最新回复(0)