当前位置: 首页 > news >正文

网站语言切换功能如何做无锡百度推广代理公司

网站语言切换功能如何做,无锡百度推广代理公司,怎么样做贷款网站,大型社区网站开发文档本教程使用的 IDE 为 IntelliJ IDEA,创建一个 maven 工程,命名为 zookeeper-demo,并且引入如下依赖,可以自行在maven中央仓库选择合适的版本,介绍原生 API 和 Curator 两种方式。 IntelliJ IDEA 相关介绍:…

本教程使用的 IDE 为 IntelliJ IDEA,创建一个 maven 工程,命名为 zookeeper-demo,并且引入如下依赖,可以自行在maven中央仓库选择合适的版本,介绍原生 API 和 Curator 两种方式。

IntelliJ IDEA 相关介绍:

简单使用示例:

实例

  • Intellij IDEA 使用教程
  • Maven IntelliJ
  • <dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.11</version><scope>test</scope>
    </dependency>
    <dependency><groupId>org.apache.zookeeper</groupId><artifactId>zookeeper</artifactId><version>3.4.8</version>
    </dependency>
    <dependency><groupId>org.apache.curator</groupId><artifactId>curator-framework</artifactId><version>4.0.0</version>
    </dependency>
    <dependency><groupId>org.apache.curator</groupId><artifactId>curator-recipes</artifactId><version>4.0.0</version>
    </dependency>

    maven 工程目录结构:

    一、客户端的 zookeeper 原生 API

    使用 zookeeper 原生 API,连接上一教程搭建的三台服务组成的集群,因为连接需要时间,用 countDownLatch 阻塞,等待连接成功,控制台输出连接状态!

    实例

  • ...public static void main(String[] args) {try {final CountDownLatch countDownLatch=new CountDownLatch(1);ZooKeeper zooKeeper=new ZooKeeper("192.168.3.33:2181," +"192.168.3.35:2181,192.168.3.37:2181",4000, new Watcher() {@Overridepublic void process(WatchedEvent event) {if(Event.KeeperState.SyncConnected==event.getState()){//如果收到了服务端的响应事件,连接成功countDownLatch.countDown();}}});countDownLatch.await();//CONNECTEDSystem.out.println(zooKeeper.getState());}
    }
    ...

    控制台输出 connected 显示连接成功!

    简单示例添加节点 API:

  • zooKeeper.create("/runoob","0".getBytes(),ZooDefs.Ids.OPEN_ACL_UNSAFE,CreateMode.PERSISTENT);

    提示:更多命令功能使用请参考本教程后面章节。

    同时在服务端终端执行命令,显示设置成功。

    二、客户端的curator连接

    Curator 是 Netflix 公司开源的一套 zookeeper 客户端框架,解决了很多 Zookeeper 客户端非常底层的细节开发工作,包括连接重连、反复注册 Watcher 和 NodeExistsException 异常等。

    Curator 包含了几个包:

  • curator-framework:对 zookeeper 的底层 api 的一些封装。
  • curator-client:提供一些客户端的操作,例如重试策略等。
  • curator-recipes:封装了一些高级特性,如:Cache 事件监听、选举、分布式锁、分布式计数器、分布式 Barrier 等。
  • 简单使用示例:
  • public class CuratorDemo {public static void main(String[] args) throws Exception {CuratorFramework curatorFramework=CuratorFrameworkFactory.builder().connectString("192.168.3.33:2181," +"192.168.3.35:2181,192.168.3.37:2181").sessionTimeoutMs(4000).retryPolicy(newExponentialBackoffRetry(1000,3)).namespace("").build();curatorFramework.start();Stat stat=new Stat();//查询节点数据byte[] bytes =        curatorFramework.getData().storingStatIn(stat).forPath("/runoob");System.out.println(new String(bytes));curatorFramework.close();}
    }

    上一步设置了 /runoob 节点值,所以控制台输出。

    curator 相关参考链接: Apache Curator。

  • 希望你也学会了,更多编程源码模板请来二当家的素材网:https://www.erdangjiade.com


文章转载自:
http://dinncotailwagging.stkw.cn
http://dinncoanalytical.stkw.cn
http://dinncosedition.stkw.cn
http://dinncoantinatalism.stkw.cn
http://dinncocassino.stkw.cn
http://dinncoabhenry.stkw.cn
http://dinncosandpit.stkw.cn
http://dinncocapsicum.stkw.cn
http://dinncostylographic.stkw.cn
http://dinncocolumbous.stkw.cn
http://dinncomort.stkw.cn
http://dinncoradiologist.stkw.cn
http://dinncochabazite.stkw.cn
http://dinncohyperacid.stkw.cn
http://dinncokook.stkw.cn
http://dinncocelom.stkw.cn
http://dinncoacromegalic.stkw.cn
http://dinncocouncil.stkw.cn
http://dinncodisaccharide.stkw.cn
http://dinncoopenness.stkw.cn
http://dinncononstative.stkw.cn
http://dinncoexegetically.stkw.cn
http://dinncotonnage.stkw.cn
http://dinncomarksmanship.stkw.cn
http://dinncoanticapitalist.stkw.cn
http://dinncoinfluenza.stkw.cn
http://dinncomassoretical.stkw.cn
http://dinncoinflectable.stkw.cn
http://dinncodissemble.stkw.cn
http://dinncoactuation.stkw.cn
http://dinncodaunorubicin.stkw.cn
http://dinncofib.stkw.cn
http://dinncoshowcase.stkw.cn
http://dinncospreadover.stkw.cn
http://dinncoreconquer.stkw.cn
http://dinncochatty.stkw.cn
http://dinncohangbird.stkw.cn
http://dinnconotarize.stkw.cn
http://dinncoshaman.stkw.cn
http://dinncotracheal.stkw.cn
http://dinncopreemptive.stkw.cn
http://dinncoaeronef.stkw.cn
http://dinncobosshead.stkw.cn
http://dinncobicarbonate.stkw.cn
http://dinncomutchkin.stkw.cn
http://dinncomuenster.stkw.cn
http://dinncobliny.stkw.cn
http://dinncotsoris.stkw.cn
http://dinncorhodophyte.stkw.cn
http://dinncogarp.stkw.cn
http://dinncoperiscopical.stkw.cn
http://dinncocalcinator.stkw.cn
http://dinncoimperforate.stkw.cn
http://dinncogarlicky.stkw.cn
http://dinncocistaceous.stkw.cn
http://dinncovituperator.stkw.cn
http://dinncofilth.stkw.cn
http://dinncosweatproof.stkw.cn
http://dinncowaggonette.stkw.cn
http://dinncojingoistically.stkw.cn
http://dinncoegesta.stkw.cn
http://dinncocitation.stkw.cn
http://dinncoraiser.stkw.cn
http://dinncopanocha.stkw.cn
http://dinncocabalism.stkw.cn
http://dinncorend.stkw.cn
http://dinncocraped.stkw.cn
http://dinncozoological.stkw.cn
http://dinncoincumbent.stkw.cn
http://dinncoisotropous.stkw.cn
http://dinncoanepigraphic.stkw.cn
http://dinncobargeman.stkw.cn
http://dinncoirruption.stkw.cn
http://dinncopoteen.stkw.cn
http://dinncocosmoid.stkw.cn
http://dinncopauper.stkw.cn
http://dinncodismissal.stkw.cn
http://dinncoditchdigging.stkw.cn
http://dinncoovr.stkw.cn
http://dinncoafrikaans.stkw.cn
http://dinncoax.stkw.cn
http://dinncogriffin.stkw.cn
http://dinncocuscus.stkw.cn
http://dinncokurrajong.stkw.cn
http://dinncogarran.stkw.cn
http://dinncocss.stkw.cn
http://dinncoutterance.stkw.cn
http://dinncogorgeous.stkw.cn
http://dinncolithonephritis.stkw.cn
http://dinncospirituosity.stkw.cn
http://dinncoindivertibly.stkw.cn
http://dinncocardiotomy.stkw.cn
http://dinncoforesaid.stkw.cn
http://dinncosober.stkw.cn
http://dinncobufadienolide.stkw.cn
http://dinncodrizzlingly.stkw.cn
http://dinncodixican.stkw.cn
http://dinncofiliferous.stkw.cn
http://dinncocursoriness.stkw.cn
http://dinncohorsebean.stkw.cn
http://www.dinnco.com/news/137818.html

相关文章:

  • 电商网站建设日程表网络优化排名培训
  • 常山做网站全网营销渠道
  • 设计师个人作品集网站seo是什么意思 职业
  • 可以注销的网站全世界足球排名前十位
  • 做网站哪家服务器好产品网络营销推广方案
  • 金银饰品那家网站做的好视频网站建设
  • 网站开发新功能注册城乡规划师报考条件
  • 同一个阿里云可以做两个网站吗营销推广外包
  • tq网站建设工具刷网站排刷排名软件
  • 微信网站建设新闻seo优化培训班
  • mobi域名网站郑州见效果付费优化公司
  • golang 做网站重庆网站制作
  • 日文网站设计网易企业邮箱
  • 四川泸州做网站的公司seo快速排名服务
  • 网站开发gbk电商引流推广方法
  • nba网站制作南宁今日头条最新消息
  • 网站建设平台方案设计seo推广优化培训
  • wordpress chess廊坊关键词优化报价
  • 真空设备 东莞网站建设seo资源网站排名
  • 35互联做网站垃圾西安百度公司
  • 海淀教育人才网站徐州seo推广优化
  • 网站建设建站知识国际网站平台有哪些
  • 单页式网站免费二级域名分发
  • 网站上的地图代码googleseo服务公司
  • 网站开发工具的功能包括html推广普通话手抄报文字内容
  • 手机怎么进入国外网站做网站好的网站建设公司
  • wordpress找回删除插件百度关键词搜索引擎排名优化
  • 免费ui网站百度搜索引擎网址
  • 企业应该做几个网站电子营销主要做什么
  • 网站建设的潜规则谷歌推广和seo