- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.ke.kob.basic.constant.ZkPathConstant.clientNodePath()
方法的一些代码示例,展示了ZkPathConstant.clientNodePath()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZkPathConstant.clientNodePath()
方法的具体详情如下:
包路径:com.ke.kob.basic.constant.ZkPathConstant
类名称:ZkPathConstant
方法名:clientNodePath
暂无
代码示例来源:origin: LianjiaTech/kob
@Override
public Map<String, ClientPath> getClientPaths(String projectCode) {
String clientNodePath = ZkPathConstant.clientNodePath(cluster, projectCode);
if (!zkClient.exists(clientNodePath)) {
return null;
}
List<String> nodePathStrList = zkClient.getChildren(clientNodePath);
Map<String, ClientPath> projectClientPath = new HashMap<>(10);
if (!KobUtils.isEmpty(nodePathStrList)) {
for (String child : nodePathStrList) {
ClientPath clientPath = JSONObject.parseObject(child, ClientPath.class);
projectClientPath.put(clientPath.getIdentification(), clientPath);
}
}
return projectClientPath;
}
}
代码示例来源:origin: LianjiaTech/kob
@Override
public Map<String, ClientInfo> getClientNodes(String projectCode) {
String clientNodePath = ZkPathConstant.clientNodePath(cluster, projectCode);
if (!zkClient.exists(clientNodePath)) {
return new HashMap<>(0);
}
List<String> nodeClientStrList = zkClient.getChildren(clientNodePath);
Map<String, ClientInfo> projectClientNode = new HashMap<>(10);
if (!KobUtils.isEmpty(nodeClientStrList)) {
for (String child : nodeClientStrList) {
ClientPath clientPath = JSONObject.parseObject(child, ClientPath.class);
String path = ZkPathConstant.clientNodePath(cluster, projectCode) + ZkPathConstant.BACKSLASH + child;
String dataStr = zkClient.readData(path, true);
if (!KobUtils.isEmpty(dataStr)) {
ClientData clientData = JSONObject.parseObject(dataStr, ClientData.class);
projectClientNode.put(clientPath.getIdentification(), new ClientInfo(path, clientPath, clientData));
}
}
}
return projectClientNode;
}
代码示例来源:origin: LianjiaTech/kob
private void refreshClientNode(List<String> currentChilds, String project) {
Map<String, ClientInfo> projectClientNode = new ConcurrentHashMap<>();
if (!KobUtils.isEmpty(currentChilds)) {
for (String child : currentChilds) {
ClientPath clientPath = JSONObject.parseObject(child, ClientPath.class);
String path = ZkPathConstant.clientNodePath(serverContext.getCluster(), project) + ZkPathConstant.BACKSLASH + child;
String dataStr = zkClient.readData(path, true);
if (!KobUtils.isEmpty(dataStr)) {
ClientData clientData = JSONObject.parseObject(dataStr, ClientData.class);
projectClientNode.put(clientPath.getIdentification(), new ClientInfo(path, clientPath, clientData));
}
}
}
serverContext.getClientNodeMap().put(project, projectClientNode);
}
代码示例来源:origin: LianjiaTech/kob
/**
* 保存项目接入信息
*
* @return ResponseData
*/
@RequestMapping(value = "/save_project_access.json")
@ResponseBody
public ResponseData saveProjectAccess() {
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
User user = (User) request.getSession().getAttribute(Attribute.SESSION_USER);
String projectCode = request.getParameter("project_code");
String regex = "([A-Z]|[a-z]|_){6,60}";
if (KobUtils.isEmpty(projectCode) || !projectCode.matches(regex)) {
return ResponseData.error("项目标识有误");
}
String projectName = request.getParameter("project_name");
if (KobUtils.isEmpty(projectName) || projectName.length() > 60) {
return ResponseData.error("项目名称有误");
}
boolean zkExist = zkClient.exists(ZkPathConstant.clientNodePath(cluster, projectCode));
boolean dbExist = indexService.existProject(projectCode);
if (zkExist || dbExist) {
return ResponseData.error("项目已存在");
}
indexService.initProject(user.getCode(), user.getName(), user.getConfiguration(), projectCode, projectName);
zkClient.createPersistent(ZkPathConstant.clientNodePath(cluster, projectCode), true);
zkClient.createPersistent(ZkPathConstant.clientTaskPath(cluster, projectCode), true);
return ResponseData.success();
}
代码示例来源:origin: LianjiaTech/kob
for (final String currentProjectCode : currentProjectCodeSet) {
if (localProjectCodeSet.add(currentProjectCode)) {
zkClient.subscribeChildChanges(ZkPathConstant.clientNodePath(serverContext.getCluster(), currentProjectCode), new IZkChildListener() {
@Override
public void handleChildChange(String parentPath, List<String> currentChilds) throws Exception {
代码示例来源:origin: LianjiaTech/kob
okHttpClient = okHttpClientBuilder.build();
clientTaskPath = ZkPathConstant.clientTaskPath(prop.getCluster(), prop.getProjectCode());
clientNodePath = ZkPathConstant.clientNodePath(prop.getCluster(), prop.getProjectCode());
buildKobRunner(beans);
buildClientInfo(prop);
代码示例来源:origin: LianjiaTech/kob
innerParams.setTaskPushNode(serverIdentification);
if (LoadBalanceType.NODE_HASH.name().equals(tw.getLoadBalance())) {
List<String> clientNodePathList = zkClient.getChildren(ZkPathConstant.clientNodePath(cluster, tw.getProjectCode()));
List<String> nodeList = new ArrayList<>();
if (!KobUtils.isEmpty(clientNodePathList)) {
所以如果我在 C++ 中有这样的东西: char A_char = 'A'; char * myPtr = &A_char; const char * myPtr = &char_A; //point
我试图在我的 Perl 脚本中将魔数(Magic Number)声明为常量,如 perlsub 中所述。但是,我收到警告: $ cat foo.perl use warnings ; use stri
我想为 data Constant a b = Constant a 这是我的直接尝试: instance Foldable (Constant a) where foldr f b (Const
我在客户端和服务器端拆分了我的文件夹,但我没有从父文件夹工作,我表现得好像它们是 2 个不同的文件夹...现在我想部署到 Heroku 但我为此需要一个主文件夹,所以我想更改我的 webpack.co
当函数不修改对象参数时,我总是让它请求一个常量引用,即使引用的对象不是真正的常量。这是错误的吗? 对于包装类,我想这样写: template class Wrapper{ private: B*
核心常量表达式的定义取决于常量表达式的概念,如要点 (2.7.1) 和 (2.9.1) 所示N4140 的。 §5.19/2: A conditional-expression e is a core
我有以下代码片段,它按预期工作。其中 x 是一个变量 var myVariable = (x === 'A' || x=== 'B') ? 'sui' : 'pai'; 但是闭包编译器正在将它转换为
我是一个国际化应用程序。其中一部分在于菜单的国际化。没关系。 通过 GWT,我可以使用 Constants 接口(interface)。 现在我必须国际化该应用程序的帮助,其中包括一些涉及菜单的文本。
在 Bjarne Stroustrup 的 A Tour of C++ 中,每章末尾都列出了一些建议。在第一章的结尾,其中一个写道: Avoid ‘‘magic constants;’’ use sy
创建常量数组的常量数组的语法是什么? 我希望函数参数是常量 char* 字符串的常量数组。 最佳答案 您可以通过将 const 放在第一个星号的右侧来实现,例如 void f(const char *
我有一本带图书馆的 Chef Recipe ,例如库.rb。它包含一个 CONSTANT: CONSTANT = 'constant' 当我为这本 Recipe 编写单元测试时,它总是给我警告: (S
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: How to check for equals? (0 == i) or (i == 0) Why does
我有以下代码: constexpr unsigned long long power_function(const unsigned long long prime, const unsigned l
在一个页面上,我有几个 Angular 模块。我为每个模块定义了一个包含模块版本的常量。 var module1 = angular.module('module1').constant('versi
C++14 中的§5.19/3 定义了一个整型常量表达式和一个转换后的常量表达式: An integral constant expression is an expression of integr
如果您打开 R# 选项并转到代码编辑> C# > 命名样式,则有 2 个设置与我非常相似。本地常量和常量字段(私有(private))。一种是 lowerCaseCamel,另一种是 UpperCam
如何将恰好命名为 reverse 的以下方法重写为允许任何枚举类型的泛型方法。 public class TestX { enum Gender { male, female } pu
我和我的一位队友进行了一次有趣的谈话。 CONSTANT.equals(VARIABLE) 是否比 Java 中的 VARIABLE.equals(CONSTANT) 快? 我怀疑这是一个虚假陈述。但
我想在 c 程序中执行脚本 cmd,所以函数 SYSTEM(CONST CHAR) 可以执行它,但我想使用这个函数和 3 个不同的参数写入一次。谁能帮帮我,有没有那种功能。 最佳答案 如果我猜对了,您
VStudio 或 ReSharper 给我以下建议: constant 在这种情况下意味着什么?如果它是当前方法作用域中的一个常量,目的是什么?方法往往很小,因此与常规 var 相比,它不应该有任何
我是一名优秀的程序员,十分优秀!