package com.kwan.shuyu.config; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Configuration; /** * zookeeper的配置类 * * @author : qinyingjie * @version : 2.2.0 * @date : 2023/5/10 12:37 */ @Configuration public class ZookeeperConfig { @Value("${kwan.zookeeper.hostlist}") private String hostlist; }