ZK@3.8源码-00-源码环境
1 源码
可以从官网或者我的笔记上clone,使用的分支是branch-3.8,我的笔记在study-3.8分支上。
2 调试工具
工具 | 版本 |
---|---|
IDE | 2022.3.2 |
JDK | 1.8 |
3 IDE设置
3.1 JRE
3.2 Resources
4 文件准备
4.1 配置文件
拷贝conf/zoo_sample.cfg为conf/zoo.cfg,内容如下
4.2 日志配置
拷贝conf/logback.xml到zookeeper-server/src/main/resources/logback.xml
5 gitignore更新
新增如下内容
shell
1 |
|
6 zk服务端启动
6.1 pom更新
6.1.1 jetty-server
xml
1 |
|
6.1.2 jetty-servlet
xml
1 |
|
6.1.3 jetty-client
xml
1 |
|
6.1.4 metrics-core
xml
1 |
|
6.1.5 metrics-graphite
xml
1 |
|
6.1.6 snappy-java
xml
1 |
|
6.2 启动配置
7 zk客户端启动
7.1 pom更新
commons-cli
xml
1 |
|
7.2 脚本启动
shell
1 |
|
ZK@3.8源码-00-源码环境
https://bannirui.github.io/2023/02/28/ZK-3-8源码-00-源码环境/