您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
用途
项目中使用了 dubbo,注册中心使用的 zookeeper,使用 zookeeper 实现了一个简单的分布式锁(依赖 curator),因为配置文件存在 dubbo.registry 配置,为了直接使用这个地址来创建分布式锁,写了一个简单的方法来提取 zookeeper 地址。
效果
dubbo.registry 有多种配置方式,支持所有情况,下面是常见的例子和提取结果:
zookeeper://localhost:2181 zookeeper://localhost:2181?client=zkclient zookeeper://localhost:2181?backup=localhost:2182,localhost:2183 zookeeper://localhost:2181?client=zkclient&backup=localhost:2182,localhost:2183 ------------结果------------ Optional[localhost:2181] Optional[localhost:2181] Optional[localhost:2181,localhost:2182,localhost:2182] Optional[localhost:2181,localhost:2183,localhost:2183]
代码
import java.util.Optional;
public class ZookeeperURL {
public static final String PREFIX = "zookeeper://";
public static final String BACKUP = "backup=";
public static Optional<String> convertDubboRegistryToZookeeperURL(String dubboRegistry){
StringBuilder zookeeperURL = new StringBuilder();
if(dubboRegistry != null && dubboRegistry.startsWith(PREFIX)){
dubboRegistry = dubboRegistry.substring(PREFIX.length());
int index = dubboRegistry.indexOf("?");
if(index > 0){
zookeeperURL.append(dubboRegistry.substring(0, index));
dubboRegistry = dubboRegistry.substring(index + 1);
String[] dubboRegistries = dubboRegistry.split("&");
for (int i = 0; i < dubboRegistries.length; i++) {
if(dubboRegistries[i].startsWith(BACKUP)){
String[] backups = dubboRegistries[i].substring(BACKUP.length()).split(",");
for (int j = 0; j < backups.length; j++) {
zookeeperURL.append(",").append(backups[i]);
}
}
}
} else {
zookeeperURL.append(dubboRegistry);
}
return Optional.of(zookeeperURL.toString());
}
return Optional.empty();
}
public static void main(String[] args) {
System.out.println(convertDubboRegistryToZookeeperURL("zookeeper://localhost:2181"));
System.out.println(convertDubboRegistryToZookeeperURL("zookeeper://localhost:2181?client=zkclient"));
System.out.println(convertDubboRegistryToZookeeperURL("zookeeper://localhost:2181?backup=localhost:2182,localhost:2183"));
System.out.println(convertDubboRegistryToZookeeperURL("zookeeper://localhost:2181?client=zkclient&backup=localhost:2182,localhost:2183"));
}
}
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对亿速云的支持。如果你想了解更多相关内容请查看下面相关链接
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。