• SpringCloud中的Eureka的集群配置


    微服务框架中最为重要的就是注册中心,如果只是单注册中心,一旦出现问题,容易导致整个微服务环境不可用,所以建议注册中心集群。

    目前SpringCloud框架中使用Eureka作为注册中心,本文简单介绍一下Eureka的集群配置,主要的思路就是相互注册,形成一组相互注册的注册中心,达到高可用的效果。

    一般来说集群配置至少需要2台以上的服务器,这里是采用本机测试,道理是一样的。

    集群配置

    依赖配置
    
    	org.springframework.boot
    	spring-boot-starter-parent
    	2.0.3.RELEASE
    	 
    
    
    
    
    
    	
    		
    			org.springframework.cloud
    		    spring-cloud-dependencies
    			Finchley.RELEASE
    			pom
    			import
    		
    	
    
    
    
    
    	
    	    org.springframework.cloud
    	    spring-cloud-starter-netflix-eureka-server
    	
    
    
    
    	
    	    spring-milestones
    	    Spring Milestones
    	    https://repo.spring.io/milestone
    	    
    	        false
    	    
    	
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    注册中心配置

    第一个注册中心配置

    # 服务端口号
    server:
      port: 8100
    # 服务名称必须一样
    spring:
      application:
     	name: app-eureka
    eureka:
      instance:
        # 注册中心ip地址(本机地址)
        hostname: 127.0.0.1
      client:
        service-url:
        # 注册地址,注册到9100的注册中心,如果是三台以上,一样可以在这边添加
        # 主要是实现相互注册
          defaultZone: http://127.0.0.1:9100/eureka/  
        # 将自己注册给自己的注册中心
        register-with-eureka: true
        # 检索自己服务信息
        fetch-registry: false
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    第二个注册中心配置

    # 服务端口号
    server:
      port: 9100
    # 服务名称必须一样
    spring:
      application:
        name: app-eureka
    
    eureka:
      instance:
        # 注册中心ip地址(本机地址)
        hostname: 127.0.0.1
      client:
        service-url:
        # 注册地址,注册到8100的注册中心,如果是三台以上,一样可以在这边添加
        # 主要是实现相互注册
          defaultZone: http://127.0.0.1:8100/eureka/  
        # 将自己注册给自己的注册中心
        register-with-eureka: true
        # 检索自己服务信息
        fetch-registry: false
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    启动
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
    
    @SpringBootApplication
    @EnableEurekaServer //开启EurekaServer服务 开启注册中心
    public class AppEureka {
    
    	public static void main(String[] args) {
    		SpringApplication.run(AppEureka.class, args);
    	}
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    客户端配置
    # 订单服务的端口号
    server:
      port: 8001
      
    # 服务别名 -- 服务注册到注册中心名称
    spring:
      application:
    	name: app-order
        
    eureka:
      client:
        service-url:
        # 当前订单服务注册到eureka服务地址,两个注册中心都注册
          defaultZone: http://localhost:8100/eureka,http://localhost:9100/eureka
        # 需要将服务注册到eureka
        register-with-eureka: true
        # 需要检索服务
        fetch-registry: true
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    客户端启动
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.client.loadbalancer.LoadBalanced;
    import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
    import org.springframework.context.annotation.Bean;
    import org.springframework.web.client.RestTemplate;
    
    @SpringBootApplication
    @EnableEurekaClient
    public class AppOrder {
    	
    	public static void main(String[] args) {
    		SpringApplication.run(AppOrder.class, args);	
    	}
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15

    总结

    以上即是Eureka的集群配置,还是比较简单易懂的。

  • 相关阅读:
    Python xlrd和xlwt操作Excel实现自动化
    redis-shake同步数据
    Day34-Linux网络管理4
    Pycharm初次创建项目时页面环境变量选择
    IOC操作-bean管理:基于注解的方式来创建对象和(自动装配)属性注入以及完全注解开发方式
    POI生成Word水印watermark(兼容WPS)的终极解决方案
    ChatGPT国内镜像,以及如何使用ChatGPT帮你制作PPT
    Qt的委托代理机制
    pytorch 实现逻辑回归
    Django基础
  • 原文地址:https://blog.csdn.net/flash_love/article/details/132846965