spring cloud:Eureka服务的搭建

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring cloud:Eureka服务的搭建相关的知识,希望对你有一定的参考价值。

1、 概念:  Eureka - 云端服务发现,一个基于 REST 的服务,用于定位服务,以实现云端中间层服务发现和故障转移。


2、  搭建:a、首先讲下单机搭建,先新建一个maven项目,在pom里面导入eureka的坐标:

                    <dependencies>

                    <parent>

                        <groupId>org.springframework.boot</groupId>

                        <artifactId>spring-boot-starter-parent</artifactId>

                        <version>1.4.0.RELEASE</version>

                      </parent>

                    <dependency>

                      <groupId>org.springframework.cloud</groupId>

                      <artifactId>spring-cloud-starter-eureka-server</artifactId>

                    </dependency>

                    </dependencies>


                b、新建类EurekaApplication

                        @SpringBootApplication

                        @EnableEurekaServer

                        public class EurekaApplication {

                          public static void main(String[] args) {

                            SpringApplication.run(EurekaApplication.class, args);

                          }

                        }

                   其中@EnableEurekaServer,启动一个服务注册中心提供给其他应用进行对话


               c、application.properties的配置项

                   # 默认的端口 server.port=8761 

                    eureka.client.register-with-eureka=false 

                    eureka.client.fetch-registry=false 

                    eureka.client.serviceUrl.defaultZone=http://localhost:${server.port}/eureka/


              d、启动springboot,并访问http://localhost:8761/


3、上面只是单机模式环境,商用环境往往是要高可用(HA)的环境,这个时候就要考虑集群,一个节点挂了,还有另外一个节点,集群我们只要改下配置文件就可以了

eureka.client.serviceUrl.defaultZone=http://localhost:8762/eureka/;http://localhost:8763/eureka/;如果ip不同,配置三个节点,则需要三台机器


以上是关于spring cloud:Eureka服务的搭建的主要内容,如果未能解决你的问题,请参考以下文章

Spring-cloud之Eureka服务搭建集群

Spring Cloud Eureka服务注册与发现

Spring Cloud Eureka服务注册与发现

Spring Cloud Eureka 2 (Eureka Server搭建服务注册中心)

基于DNS搭建高可用Eureka注册中心

Spring Cloud Eureka 服务治理学习1 简介与系统搭建