Springboot+SpringCloud+zk
程序员文章站
2022-05-13 19:38:44
...
项目需求
云端需要给APP提供接口,为了安全起见,APP调的接口需要过网关路由转发到自己的项目。网关gateway,使用zk作为服务注册发现中心。自己的项目是springboot项目。
引入springCloud+zk依赖
pom文件
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-zookeeper-discovery</artifactId>
<version>2.1.1.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<!-- 与服务器安装的Zookeeper版本相同 -->
<version>3.4.9</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
yml文件中加上
spring:
application:
#本地测试
name: video-talk
#测试服务器
#name: db201
cloud:
zookeeper:
connect-string: localhost:2181
discovery:
enabled: true
register: true
instance-host: ${spring.cloud.client.ip-address} //自动获取启动服务的ip注册到zk注册中心
#instance-host: 180.8.16.47 //也可以写死,建议写上面的那种用法
root: /sms //注册到zk之后的根节点的名称
使用zookeeper可视化-zkui可以查看服务是否注册进zk上。
上一篇: package.json 配置理解