集群实例

集群搭建

完全集群

创建3个springboot项目
引入eureka server 依赖
配置文件application.properties
tips:node为一个微小的springboot项目

node1: server.port=8761

      http://localhost:8762/eureka,http://localhost:8763/eureka

node2: server.port=8762

      http://localhost:8761/eureka,http://localhost:8763/eureka

node3: server.port=8763

      http://localhost:8761/eureka,http://localhost:8762/eureka

在每个项目main方法加入

@EnableEurekaServer 注解

标签: none

添加新评论