All Downloads are FREE. Search and download functionalities are using the official Maven repository.

plus.jdk.etcd.config.EtcdPlusProperties Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package plus.jdk.etcd.config;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;


/**
 * ...
 */
@Data
@ConfigurationProperties(prefix = "plus.jdk.etcd")
public class EtcdPlusProperties {

    /**
     * 是否启动
     */
    private Boolean enabled = false;

    /**
     * 用户名
     */
    private String userName;

    /**
     * 密码
     */
    private String password;

    /**
     * etcd节点列表
     */
    private String[] endpoints;

    /**
     * watcher核心线程数
     */
    private int watcherCoreThreadPollSize = 10;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy