- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.sitewhere.microservice.zookeeper.ZkUtils.copyFolderRecursivelytoZk()
方法的一些代码示例,展示了ZkUtils.copyFolderRecursivelytoZk()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZkUtils.copyFolderRecursivelytoZk()
方法的具体详情如下:
包路径:com.sitewhere.microservice.zookeeper.ZkUtils
类名称:ZkUtils
方法名:copyFolderRecursivelytoZk
[英]Copy a folder recursively into Zk.
[中]将文件夹递归复制到Zk中。
代码示例来源:origin: sitewhere/sitewhere
/**
* Copy a folder recursively into Zk.
*
* @param curator
* @param zkRoot
* @param root
* @param current
* @throws SiteWhereException
*/
public static void copyFolderRecursivelytoZk(CuratorFramework curator, String zkRoot, File root, File current)
throws SiteWhereException {
ZkUtils.copyFolderRecursivelytoZk(curator, zkRoot, root, current, Collections.emptyList());
}
代码示例来源:origin: sitewhere/sitewhere
@Override
public void copyTemplateContentsToZk(String templateId, CuratorFramework curator, String instancePath)
throws SiteWhereException {
IInstanceTemplate template = getInstanceTemplates().get(templateId);
if (template == null) {
throw new SiteWhereException("Instance template not found: " + templateId);
}
File root = getTemplatesRoot();
File templateFolder = new File(root, templateId);
if (!templateFolder.exists()) {
throw new SiteWhereException("Template folder not found at '" + templateFolder.getAbsolutePath() + "'.");
}
ZkUtils.copyFolderRecursivelytoZk(curator, instancePath, templateFolder, templateFolder);
}
代码示例来源:origin: sitewhere/sitewhere
@Override
public void copyTemplateContentsToZk(String templateId, CuratorFramework curator, String tenantPath)
throws SiteWhereException {
IDatasetTemplate template = getTemplatesById().get(templateId);
if (template == null) {
throw new SiteWhereException("Dataset template not found: " + templateId);
}
File root = ((ITenantManagementMicroservice<?>) getMicroservice()).getDatasetTemplatesRoot();
// Copy template contents on top of default.
File templateFolder = new File(root, templateId);
if (!templateFolder.exists()) {
throw new SiteWhereException(
"Dataset template folder not found at '" + templateFolder.getAbsolutePath() + "'.");
}
ZkUtils.copyFolderRecursivelytoZk(curator, tenantPath, templateFolder, templateFolder);
}
代码示例来源:origin: sitewhere/sitewhere
"Unable to copy folder '" + file.getAbsolutePath() + "' into '" + subFile + "'.", e);
ZkUtils.copyFolderRecursivelytoZk(curator, zkRoot, root, file);
} else if (file.isFile()) {
FileInputStream input = null;
代码示例来源:origin: sitewhere/sitewhere
/**
* Copy content from 'default' folder as baseline (also register any default
* scripts).
*
* @param curator
* @param tenantPath
* @param root
* @throws SiteWhereException
*/
protected void addDefaultContent(CuratorFramework curator, ITenant tenant, File root) throws SiteWhereException {
String tenantPath = ((ITenantManagementMicroservice<?>) getMicroservice())
.getInstanceTenantConfigurationPath(tenant.getId());
// Copy default content shared by all tenants.
File defaultFolder = new File(root, DEFAULT_TENANT_CONTENT_FOLDER);
if (!defaultFolder.exists()) {
throw new SiteWhereException("Default folder not found at '" + defaultFolder.getAbsolutePath() + "'.");
}
ZkUtils.copyFolderRecursivelytoZk(curator, tenantPath, defaultFolder, defaultFolder,
Collections.singletonList("scripts"));
// Add any default scripts.
addScriptsForFolder(tenant, defaultFolder);
}
代码示例来源:origin: sitewhere/sitewhere
/**
* Copy template content on top of baseline structure added from 'default'
* folder.
*
* @param curator
* @param template
* @param tenantPath
* @param root
* @throws SiteWhereException
*/
protected void copyTemplateContent(CuratorFramework curator, ITenant tenant, ITenantTemplate template, File root)
throws SiteWhereException {
String tenantPath = ((ITenantManagementMicroservice<?>) getMicroservice())
.getInstanceTenantConfigurationPath(tenant.getId());
File templateFolder = getTenantTemplateFolder(template, root);
ZkUtils.copyFolderRecursivelytoZk(curator, tenantPath, templateFolder, templateFolder,
Collections.singletonList("scripts"));
}
本文整理了Java中kafka.utils.ZkUtils.getReplicasForPartition()方法的一些代码示例,展示了ZkUtils.getReplicasForPartition(
本文整理了Java中kafka.utils.ZkUtils.getConsumerGroups()方法的一些代码示例,展示了ZkUtils.getConsumerGroups()的具体用法。这些代码示
本文整理了Java中kafka.utils.ZkUtils.zkClient()方法的一些代码示例,展示了ZkUtils.zkClient()的具体用法。这些代码示例主要来源于Github/Stack
本文整理了Java中kafka.utils.ZkUtils.readDataMaybeNull()方法的一些代码示例,展示了ZkUtils.readDataMaybeNull()的具体用法。这些代码示
本文整理了Java中kafka.utils.ZkUtils.updatePersistentPath()方法的一些代码示例,展示了ZkUtils.updatePersistentPath()的具体用法
本文整理了Java中kafka.utils.ZkUtils.getLeaderForPartition()方法的一些代码示例,展示了ZkUtils.getLeaderForPartition()的具体
本文整理了Java中kafka.utils.ZkUtils.formatAsReassignmentJson()方法的一些代码示例,展示了ZkUtils.formatAsReassignmentJso
本文整理了Java中kafka.utils.ZkUtils.getPartitionsForTopics()方法的一些代码示例,展示了ZkUtils.getPartitionsForTopics()的
本文整理了Java中kafka.utils.ZkUtils.createZkClientAndConnection()方法的一些代码示例,展示了ZkUtils.createZkClientAndCon
本文整理了Java中kafka.utils.ZkUtils.ConsumersPath()方法的一些代码示例,展示了ZkUtils.ConsumersPath()的具体用法。这些代码示例主要来源于Gi
本文整理了Java中kafka.utils.ZkUtils.getPartitionsBeingReassigned()方法的一些代码示例,展示了ZkUtils.getPartitionsBeingR
本文整理了Java中kafka.utils.ZkUtils.()方法的一些代码示例,展示了ZkUtils.()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平
本文整理了Java中kafka.utils.ZkUtils.apply()方法的一些代码示例,展示了ZkUtils.apply()的具体用法。这些代码示例主要来源于Github/Stackoverfl
本文整理了Java中kafka.utils.ZkUtils.BrokerIdsPath()方法的一些代码示例,展示了ZkUtils.BrokerIdsPath()的具体用法。这些代码示例主要来源于Gi
本文整理了Java中kafka.utils.ZkUtils.getAllTopics()方法的一些代码示例,展示了ZkUtils.getAllTopics()的具体用法。这些代码示例主要来源于Gith
本文整理了Java中kafka.utils.ZkUtils.getAllBrokersInCluster()方法的一些代码示例,展示了ZkUtils.getAllBrokersInCluster()的
本文整理了Java中kafka.utils.ZkUtils.getPartitionAssignmentForTopics()方法的一些代码示例,展示了ZkUtils.getPartitionAssi
本文整理了Java中kafka.utils.ZkUtils.close()方法的一些代码示例,展示了ZkUtils.close()的具体用法。这些代码示例主要来源于Github/Stackoverfl
本文整理了Java中org.apache.zookeeper.ZKUtil.listSubTreeBFS()方法的一些代码示例,展示了ZKUtil.listSubTreeBFS()的具体用法。这些代码
本文整理了Java中com.facebook.zookeeper.ZkUtil.bytesToString()方法的一些代码示例,展示了ZkUtil.bytesToString()的具体用法。这些代码
我是一名优秀的程序员,十分优秀!