Coder Social home page Coder Social logo

spring-boot-zookeeper's Introduction

zk boot starter

依赖

 <dependency>
    <groupId>com.spring.boot</groupId>
    <artifactId>zk-spring-boot-starter</artifactId>
    <version>1.0.0-SNAPSHOT</version>
 </dependency>

配置 properties

spring.boot.zk.enable=true
spring.boot.zk.cluster=127.0.0.1:2181
spring.boot.zk.nameSpace=example
spring.boot.zk.sessionTimeOut=60000
spring.boot.zk.connectionTimeOut=30000
spring.boot.zk.userName=liuhailin
spring.boot.zk.password=liuhailin

或者 yml

spring:
  boot:
    zk:
      enable: true
      cluster: 127.0.0.1:2181
      nameSpace: example
      sessionTimeOut: 60000
      connectionTimeOut: 30000
      userName: liuhailin
      password: liuhailin

Example 例子

@Component
public class Example {

    @Autowired
    private IZKClient client;

    @PostConstruct
    public void init() {

        boolean isEx = client.checkNode( "/12345" );
        if (!isEx) {
            client.createNode( "/12345", "liuhailin" );
        } else {
            client.deleteNode( "/12345" );
        }

    }
}

spring-boot-zookeeper's People

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.