Dubbo入门2:Springboot+Dubbo2.6.0+ZooKeeper3.4.8整合

demo:整合Springboot+Dubbo2.6.0+ZooKeeper3.4.8

本文主要目的:记录整合以上3个框架的配置文件的写法

此文只在《Dubbo入门1》的基础上略作修改,仅记录修改的部分。

common

修改配置文件pom.xml:额外引入zookeeper依赖,zk版本为3.4.8

<dependency>
            <groupId>com.101tec</groupId>
            <artifactId>zkclient</artifactId>
            <version>0.10</version>
</dependency>

provider

修改application.properties

Dubbo入门2:Springboot+Dubbo2.6.0+ZooKeeper3.4.8整合

consumer

修改application.properties

额外添加第二行,声明consumer使用的注册中心的地址及端口号
Dubbo入门2:Springboot+Dubbo2.6.0+ZooKeeper3.4.8整合

删除服务实现类中的url

Dubbo入门2:Springboot+Dubbo2.6.0+ZooKeeper3.4.8整合

启动

启动zookeeper

  1. 进入zookeeper的bin目录

  2. win系统:双击zkServer.cmd;linux系统:双击zkServer.sh,启动成功

Dubbo入门2:Springboot+Dubbo2.6.0+ZooKeeper3.4.8整合

启动provider

Dubbo入门2:Springboot+Dubbo2.6.0+ZooKeeper3.4.8整合

启动consumer

Dubbo入门2:Springboot+Dubbo2.6.0+ZooKeeper3.4.8整合

成功调用provider的方法


完。

上一篇:dubbo的spi思想是什么?


下一篇:对于 React 中 context 的理解