com.github.wangchenning.autoconfig.ZookeeperProperties Maven / Gradle / Ivy
The newest version!
package com.github.wangchenning.autoconfig;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
@ConfigurationProperties(prefix = "elasticjob.zookeeper")
@Data
public class ZookeeperProperties {
private String serverList;
private String namespace;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy