Spring Cloud配置中心服务化和高可用

在前两篇的介绍中,客户端都是直接调用配置中心的Server端来获取配置文件信息。这样就存在一个问题,客户端和服务端的耦合性太高,如果Server端要做集群,客户端只能通过原始的方式来路由,Server端改变IP地址的时候,客户端也需要修改配置,不符合Spring Cloud服务治理的理念。Spring Cloud提供了这样的解决方案,我们只需要将Server端当做一个服务注册到Eureka中,Client端去Eureka中去获取配置中心Server端的服务既可。

我们基于配置中心git版本的内容来改造

Server端改造

添加依赖

<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-config-server</artifactId>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-netflix-eureka-client -->
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        <version>2.1.1.RELEASE</version>
    </dependency>

    <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-feign -->
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-feign</artifactId>
        <version>1.4.6.RELEASE</version>
    </dependency>
</dependencies>

需要多引入spring-cloud-starter-netflix-eureka-client包,来添加对eureka的支持。

配置文件

server:
  port: 8001
spring:
  application:
    name: spring-cloud-config-server
  cloud:
    config:
      server:
        git:
          uri: https://github.com/iyezhou/spring-cloud-starter/     # 配置git仓库的地址
          search-paths: config-repo                                 # git仓库地址下的相对地址,可以配置多个,用,分割。
          username: username                                        # git仓库的账号
          password: password                                        # git仓库的密码
eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:8000/eureka/   ## 注册中心eurka地址

增加了eureka注册中心的配置

启动类

启动类添加@EnableDiscoveryClient激活对配置中心的支持

@EnableDiscoveryClient
@EnableConfigServer
@SpringBootApplication
public class ConfigServerApplication {

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

这样Server端的改造就完成了。先启动eureka注册中心,在启动Server端,在浏览器中访问:http://localhost:8000/ 就会看到Server端已经注册到注册中心。

客户端改造

添加依赖

<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-config</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-netflix-eureka-client -->
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        <version>2.1.1.RELEASE</version>
    </dependency>

    <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-feign -->
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-feign</artifactId>
        <version>1.4.6.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

需要多引入spring-cloud-starter-netflix-eureka-client包,来添加对eureka的支持。

配置文件

spring.application.name=spring-cloud-config-client
server.port=8002

spring.cloud.config.name=appblog-config
spring.cloud.config.profile=dev
spring.cloud.config.label=master
spring.cloud.config.discovery.enabled=true
spring.cloud.config.discovery.serviceId=spring-cloud-config-server

eureka.client.serviceUrl.defaultZone=http://localhost:8000/eureka/

主要是去掉了spring.cloud.config.uri直接指向server端地址的配置,增加了最后的三个配置:

  • spring.cloud.config.discovery.enabled:开启Config服务发现支持
  • spring.cloud.config.discovery.serviceId:指定server端的name,也就是server端spring.application.name的值
  • eureka.client.serviceUrl.defaultZone:指向配置中心的地址

这两个配置文件都需要放到bootstrap.properties的配置中

启动类

启动类添加@EnableDiscoveryClient激活对配置中心的支持

@EnableDiscoveryClient
@SpringBootApplication
public class ConfigClientApplication {

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

启动Client端,在浏览器中访问:http://localhost:8000/ 就会看到Server端和Client端都已经注册到注册中心。

高可用

为了模拟生产集群环境,我们改动Server端的端口为8003,再启动一个Server端来做服务的负载,提供高可用的Server端支持。

两个Server端同时提供配置中心的服务,防止某一台down掉之后影响整个系统的使用。

我们先单独测试服务端,分别访问:http://localhost:8001/appblog-config/devhttp://localhost:8003/appblog-config/dev,返回信息:

{
    "name": "appblog-config", 
    "profiles": [
        "dev"
    ], 
    "label": null, 
    "version": null, 
    "state": null, 
    "propertySources": [
        {
            "name": "https://github.com/ityouknow/spring-cloud-starter/config-repo/appblog-config-dev.properties", 
            "source": {
                "appblog.hello": "Hello, I'm dev update"
            }
        }
    ]
}

说明两个Server端都正常读取到了配置信息。

再次访问:http://localhost:8002/hello,返回:Hello, I'm dev update。说明客户端已经读取到了Server端的内容,我们随机停掉一台Server端的服务,再次访问:http://localhost:8002/hello,返回:Hello, I'm dev update,说明达到了高可用的目的。

版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/11/spring-cloud-configuration-center-servitization-and-high-availability/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
打赏
海报
Spring Cloud配置中心服务化和高可用
在前两篇的介绍中,客户端都是直接调用配置中心的Server端来获取配置文件信息。这样就存在一个问题,客户端和服务端的耦合性太高,如果Server端要做集群,客户……
<<上一篇
下一篇>>
文章目录
关闭
目 录