人的知识就好比一个圆圈,圆圈里面是已知的,圆圈外面是未知的。你知道得越多,圆圈也就越大,你不知道的也就越多。

0%

Spring Boot 集成 ZooKeeper

Maven 依赖

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<dependencies>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
</dependency>
<!-- zookeeper API的高层封装,大大简化 zookeeper 客户端编程,添加了例如 zookeeper 连接管理、重试机制等 -->
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-framework</artifactId>
</dependency>
<!-- zookeeper 典型应用场景的实现,这些实现是基于 curator-framework -->
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
</dependency>
</dependencies>

配置类

这里直接使用 curator 的 API:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
@Data
@Component
@ConfigurationProperties(prefix = "zookeeper")
public class ZooKeeperProperties {
/**
* ZooKeeper 服务器列表,由英文状态逗号分开的 host:port 字符串组成,每一个都代表一台 ZooKeeper 机器,例如,localhost:2181,localhost:2182,localhost:2183
*/
private String connectString;

/**
* 会话超时时间,单位为毫秒。默认是 60000ms
*/
private int sessionTimeout;

/**
* 连接创建超时时间,单位为毫秒,默认是 15000ms
*/
private int connectionTimeout;

/**
* 已经重试的次数。如果是第一次重试,那么该参数为 0
*/
private int retryCount;

/**
* 从第一次重试开始已经花费的时间,单位为毫秒
*/
private int elapsedTime;
}

@Slf4j
@Configuration
public class ZooKeeperConfiguration {
private final ZooKeeperProperties properties;

public ZooKeeperConfiguration(ZooKeeperProperties properties) {
this.properties = properties;
}

@Bean(initMethod = "start")
public CuratorFramework curatorFramework() {
return CuratorFrameworkFactory.newClient(
properties.getConnectString(),
properties.getSessionTimeout(),
properties.getConnectionTimeout(),
new RetryNTimes(properties.getRetryCount(), properties.getElapsedTime()));
}
}

使用

1
2
@Autowired
private CuratorFramework client;
小礼物走一走,来 Github 关注我