You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package com.xkcoding.zookeeper.config;
-
- import com.xkcoding.zookeeper.config.props.ZkProps;
- import org.apache.curator.RetryPolicy;
- import org.apache.curator.framework.CuratorFramework;
- import org.apache.curator.framework.CuratorFrameworkFactory;
- import org.apache.curator.retry.ExponentialBackoffRetry;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.boot.context.properties.EnableConfigurationProperties;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
-
- /**
- * <p>
- * Zookeeper配置类
- * </p>
- *
- * @author yangkai.shen
- * @date Created in 2018-12-27 14:45
- */
- @Configuration
- @EnableConfigurationProperties(ZkProps.class)
- public class ZkConfig {
- private final ZkProps zkProps;
-
- @Autowired
- public ZkConfig(ZkProps zkProps) {
- this.zkProps = zkProps;
- }
-
- @Bean
- public CuratorFramework curatorFramework() {
- RetryPolicy retryPolicy = new ExponentialBackoffRetry(zkProps.getTimeout(), zkProps.getRetry());
- CuratorFramework client = CuratorFrameworkFactory.newClient(zkProps.getUrl(), retryPolicy);
- client.start();
- return client;
- }
- }
|