1 Star 0 Fork 0

守恒/ribbon-watch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
RibbonWatchClients.java 999 Bytes
一键复制 编辑 原始数据 按行查看 历史
守恒 提交于 2022-09-28 14:40 . 源码文件提交
package org.tang.gateway.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import java.util.List;
/**
* @author Tang
* @classname RibbonWatchClients
* @description [ ]
* @date 2022/9/26 16:55
*/
@ConfigurationProperties(prefix = "ribbon")
public class RibbonWatchClients {
private boolean allClient;
private List<String> includeClients;
private List<String> excludeClients;
public List<String> getIncludeClients() {
return includeClients;
}
public void setIncludeClients(List<String> includeClients) {
this.includeClients = includeClients;
}
public boolean isAllClient() {
return allClient;
}
public void setAllClient(boolean allClient) {
this.allClient = allClient;
}
public List<String> getExcludeClients() {
return excludeClients;
}
public void setExcludeClients(List<String> excludeClients) {
this.excludeClients = excludeClients;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shouhengR/ribbon-watch.git
git@gitee.com:shouhengR/ribbon-watch.git
shouhengR
ribbon-watch
ribbon-watch
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385