SpringCloud Eureka集群配置

1、引入相关jar

附pom.xml的配置



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.6.3
         
    
    com.example
    eureka
    0.0.1-SNAPSHOT
    eureka
    Demo project for Spring Boot
    
        1.8
        2021.0.0
    
    
        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-server
        

        
            org.springframework.boot
            spring-boot-starter-test
            test
        
        
            junit
            junit
            4.13
        
    

    
        
            
                org.springframework.cloud
                spring-cloud-dependencies
                ${spring-cloud.version}
                pom
                import
            
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    


2、配置启动类

主要是增加@EnableEurekaServer注解:

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@SpringBootApplication
@EnableEurekaServer
public class EurekaApplication {

    public static void main(String[] args) {
        SpringApplication.run(EurekaApplication.class, args);
    }

}

3、编写配置文件

新建和编辑application.yml、application-peer1.yml、application-peer2.yml、application-peer3.yml文件。我这里主要是进行3个集群,所以添加了application-peer1.yml、application-peer2.yml、application-peer3.yml这3个配置文件。其中项目共同的配置写在application.yml中。不同的配置写在各个分支的配置文件里边。下面附上这4个配置文件的代码:

application.yml

spring:
  application:
    name: spring-cloud-eureka

application-peer1.yml

server:
  port: 8000
eureka:
  instance:
    hostname: peer1
  client:
    serviceUrl:
      defaultZone: http://peer2:8001/eureka/,http://peer3:8002/eureka/

application-peer2.yml

server:
  port: 8001
eureka:
  instance:
    hostname: peer2
  client:
    serviceUrl:
      defaultZone: http://peer1:8000/eureka/,http://peer3:8002/eureka/

application-peer3.yml

server:
  port: 8002
eureka:
  instance:
    hostname: peer3
  client:
    serviceUrl:
      defaultZone: http://peer1:8000/eureka/,http://peer2:8001/eureka/

4、配置hosts文件

上面的配置文件中hostname:peer1之类的配置信息,系统是无法识别。如果不配置hosts文件,项目启动会报无法识别的host异常。因此需要配置hosts文件,具体位置在C:\Windows\System32\drivers\etc\,如下图:

SpringCloud Eureka集群配置_第1张图片

添加以下配置内容:

127.0.0.1 peer1
127.0.0.1 peer2
127.0.0.1 peer3

 5、将项目打成jar包,并进入jar所在的目录,在CMD命令行窗口执行如下命令:

javar -jar eureka-0.0.1-SNAPSHOT.jar --spring.profiles.active=peer1

启动命令添加spring.profiles.active参数,这样就会读取相应分支的配置信息。项目启动过程会报错,主要是其依赖的服务peer2和peer3尚未启动,因此先忽略该异常,继续打开新的窗口并启动另外2个服务peer2和peer3,等这3个服务都启动。当出现如下提示,则表明服务已成功启动:

SpringCloud Eureka集群配置_第2张图片

 在浏览器中访问http://localhost:8000/ 、http://localhost:8001/  、http://localhost:8002/,查看注册中心,发现各DS Replicas已经有了相关的配置信息。

SpringCloud Eureka集群配置_第3张图片

我们尝试把peer2关闭,观察注册中心的变化:

SpringCloud Eureka集群配置_第4张图片 

 这时我们会发现peer2就会移动到unavailable-replicas一栏中,表示peer2不可用。

你可能感兴趣的:(eureka,spring,cloud,java)