Spring Cloud【Finchley】实战-05配置中心的搭建(配合使用Eureka)和Config Server高可用

本文涉及的产品
日志服务 SLS,月写入数据量 50GB 1个月
简介: Spring Cloud【Finchley】实战-05配置中心的搭建(配合使用Eureka)和Config Server高可用

概述


入门文章请看我之前整理的博客: Spring Cloud【Finchley】-19Spring Cloud Config之Config Server和Config Client


搭建Config Server


总结下Spring Cloud的三部曲

1. 增加依赖

2. 启用注解@EnableXXX

3. 配置文件


Step1: 新建Config Server微服务,添加依赖

关键依赖如下:

    <dependency>
         <groupId>org.springframework.cloud</groupId>
         <artifactId>spring-cloud-config-server</artifactId>
     </dependency>
     <dependency>
         <groupId>org.springframework.cloud</groupId>
         <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
     </dependency>


Step2: 将Config Server 注册到Eureka Server上

2.1启动类增加 @EnableEurekaClient 注解 ,作为Eureka Client 注册到注册中心上去

20190404150510429.png


2.2application.yml 新增配置如下

spring:
  application:
    name: artisan-config
eureka:
  client:
    service-url:
      defaultZone: http://localhost:8761/eureka/


Step3: 启动@EnableConfigServer,将服务变更为Config Server


2.1启动类增加 @EnableConfigServer注解


20190404150717893.png

2.2application.yml 新增配置如下


20190404151043424.png

又加了个指定端口 9898 和 force-pull 属性 。 完整配置如下


20190404170119156.png



Cannot pull from remote the working tree is not clean. 这种报错可以通过配置强制拉属性force-pull: true 。 由于Spring Cloud配置服务器会复制远程git存储库,如果本地副本变得不干净,那么Spring Cloud配置服务器就不能更新远程存储库中的本地副本。通过设置强制拉属性为true,使Spring Cloud配置服务器从远程存储库中强制pull。


官方指导: https://github.com/spring-cloud/spring-cloud-config/blob/master/docs/src/main/asciidoc/spring-cloud-config.adoc#force-pull-in-git-repositories


Step5: 新建远端Git工程,用于存放配置文件


之前创建了一个远端Git, 地址为: https://github.com/yangshangwei/spring-cloud-config-center 我们就直接拿来用吧

搭建过程: 搭建Config Server的后端存储

为了测试下,我们新建几个order的配置文件 ,放些配置进去



20190404165743708.png


Step6: 启动测试


启动Eureka Server 和 该工程

访问Eureka http://localhost:8761/


20190404151135864.png


访问: http://localhost:9898/artisan-order-dev.yml


20190404170010503.png

basedir的配置看日志

20190404170202849.png


20190404170324136.png

搭建Config Client


上面我们把Order微服务的配置文件放到了远端的Git,自然而然本地的工程直接使用远端存储的配置文件既可以了,本地的配置自然而言就应该不需要了。


Step1.添加spring-cloud-config-client依赖

在Order工程中添加 spring-cloud-config-client 依赖

      <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-config-client</artifactId>
        </dependency>


Step2. 新建bootstrap.yml

spring:
  application:
    name: artisan-order
  cloud:
    config:
      profile: dev
      # 可配置多个,不推荐使用,因为需要设置具体的ip.服务端修改或者新增IP后,要同步修改
      # uri: http://localhost:9898/,http://localhost:9999/
      discovery:
        # 指定Config Server在服务发现中的service Id ,默认为configserver
        service-id: ARTISAN-CONFIG
        # 表示使用服务发现组件中的Config Server,而不自己指定Config Server的uri,默认为false
        enabled: true


上述配置信息一定要写到bootstrap.yml中。 如果配到了application.yml中,spring.cloud.config.uri 就会访问默认的8888端口,而非配置的端口了。


bootstrap.yml 是被一个父级的 Spring ApplicationContext 加载的,在加载application.yml 的 ApplicationContext之前。配置在 bootstrap.yml 中的属性优先级更高,默认情况下不能被本地配置覆盖。


当启动不了的时候,比如从远端加载不到配置文件的时候,注意观察日志:

2019-04-04 16:42:41.844  INFO 27888 --- [  restartedMain] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://localhost:9898/
2019-04-04 16:42:45.426  INFO 27888 --- [  restartedMain] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=artisan-order, profiles=[dev], label=null, version=16152eaaf132cd054c2ac538a11fe4bb7fff6583, state=null
2019-04-04 16:42:45.427  INFO 27888 --- [  restartedMain] b.c.PropertySourceBootstrapConfiguration : Located property source: CompositePropertySource {name='configService', propertySources=[MapPropertySource {name='configClient'}, MapPropertySource {name='https://github.com/yangshangwei/spring-cloud-config-center/artisan-order.yml'}]}


Step3. 启动artisan-order

启动后观察是否注册到Eureka上


20190404170606231.png

Step4. 验证

package com.artisan.order.controller;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ConfigController {
    @Value("${spring.datasource.url}")
    private String url;
    @GetMapping("/value")
    public String getValueFromGit(){
        return url;
    }
}


获取 spring.datasource.url的值


20190408105447573.png

访问 http://localhost:8081/value

20190408105414397.png

配置中心的高可用

Config Server注册到注册中心上的场景

这种情况最简单,启动多个Config Server即可。 下面我们来验证下

20190408112229724.png


配置中心再启动另外一个端口


20190408110624362.png

可以看到我们启动了两个进程

20190408110725682.png

去Eureka Server上看也可以。

20190408111318881.png

然后重启下artisan-order微服务,观察日志 中的 server url

Multiple Config Server Urls found listed.
Fetching config from server at : http://localhost:9898/
Located environment: name=artisan-order, profiles=[dev], label=null, version=06a183a4820a618cc1dc53b33d77e22106a9c4e4, state=null
Located property source: CompositePropertySource {name='configService', propertySources=[MapPropertySource {name='configClient'}, MapPropertySource {name='https://github.com/yangshangwei/spring-cloud-config-center/artisan-order-dev.yml'}, MapPropertySource {name='https://github.com/yangshangwei/spring-cloud-config-center/artisan-order.yml'}]}

再次重启下 ,或者多重启几次

Multiple Config Server Urls found listed.
Fetching config from server at : http://localhost:9999/
Located environment: name=artisan-order, profiles=[dev], label=null, version=06a183a4820a618cc1dc53b33d77e22106a9c4e4, state=null
Located property source: CompositePropertySource {name='configService', propertySources=[MapPropertySource {name='configClient'}, MapPropertySource {name='https://github.com/yangshangwei/spring-cloud-config-center/artisan-order-dev.yml'}, MapPropertySource {name='https://github.com/yangshangwei/spring-cloud-config-center/artisan-order.yml'}]}


停掉9898节点 ,再次重启下artisan-order服务 ,观察日志

20190408111800278.png


Config Server未注册到注册中心上的场景

借助负载均衡设备即可 ,比如 Nginx , F5,A10等等


20190408112327423.png

修改Eureka Server的默认端口8761的情况


如果我们不使用Eureka Server默认的端口呢? 比如我们使用8762

先把Eureka Server的端口改为8762


20190408144551789.png


其他eureka client客户端将 defaultZone修改为 8762端口对应的url .


Step1. 将Eureka的配置下沉到客户端上

改完默认的端口,我们启动Eureka Server , artisan-config , 发现都可以起来

访问: http://localhost:8762/

20190408144906723.png

紧接着我们启动 artisan-order ,报错了。。。。

2019-04-08 14:47:29.463 ERROR 30340 --- [  restartedMain] c.n.d.s.t.d.RedirectingEurekaHttpClient  : Request execution error
com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException: Connection refused: connect
  at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:187) ~[jersey-apache-client4-1.19.1.jar:1.19.1]
  ........
Caused by: java.net.ConnectException: Connection refused: connect
  at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) ~[na:1.8.0_191]
2019-04-08 14:47:29.466  WARN 30340 --- [  restartedMain] c.n.d.s.t.d.RetryableEurekaHttpClient    : Request execution failed with message: java.net.ConnectException: Connection refused: connect
2019-04-08 14:47:29.468 ERROR 30340 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_ARTISAN-ORDER/localhost:artisan-order - was unable to refresh its cache! status = Cannot execute request on any known server
com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server
  at com.netflix.discovery.shared.transport.decorator.RetryableEurekaHttpClient.execute(RetryableEurekaHttpClient.java:112) ~[eureka-client-1.9.2.jar:1.9.2]
  ....
  at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) ~[spring-boot-devtools-2.0.3.RELEASE.jar:2.0.3.RELEASE]
2019-04-08 14:47:29.474  WARN 30340 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : Using default backup registry implementation which does not do anything.
2019-04-08 14:47:29.476  INFO 30340 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : Not registering with Eureka server per configuration
2019-04-08 14:47:29.480  INFO 30340 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : Discovery Client initialized at timestamp 1554706049479 with initial instances count: 0
2019-04-08 14:47:29.590  WARN 30340 --- [  restartedMain] lientConfigServiceBootstrapConfiguration : Could not locate configserver via discovery
java.lang.IllegalStateException: No instances found of configserver (ARTISAN-CONFIG)
  at org.springframework.cloud.config.client.ConfigServerInstanceProvider.getConfigServerInstances(ConfigServerInstanceProvider.java:25) ~[spring-cloud-config-client-2.0.0.RELEASE.jar:2.0.0.RELEASE]
  ....


一看就知道是Eureka 的问题,我们想到,统一配置中心上artisan-order-dev.yml的Eureka Server的端口还没改,改下再试试吧


20190408145354225.png

访问下 http://localhost:9898/artisan-order-dev.yml 看下效果

20190408145446253.png

再次启动artisan order ,还是报错

20190408150606837.png


访问了配置中心的默认端口8888 ,

这样的话 我们把Eureka的配置

# Eureka
eureka:
  client:
    service-url:
      defaultZone: http://localhost:8762/eureka/


下沉到artisan order 中

20190408150934994.png

意思就是:启动的时候会优先加载bootstrap中的配置,从该配置文件中找到注册中心的地址,然后再注册中心上去找配置中心的service-id .

同时把配置中心artisan-order-dev.yml 中的eureka的配置注释或者删掉。

20190408150815788.png

Step2. 注释掉默认配置文件的配置

再次访问下 http://localhost:9898/artisan-order-dev.yml 看下


20190408150850908.png


怎么又是8761了。。。。

我们来观察下 artisan cofig的日志

20190408151147765.png

当我们按照这种格式访问 http://localhost:9898/artisan-order-dev.yml 配置文件时,config server同时也会把默认配置文件的artisan-order中的配置合并后返回。

那看下 artisan-order.yml的配置看下吧


20190408151346727.png


把artisan-order.yml的配置注释掉吧


20190408151522200.png

再次访问 http://localhost:9898/artisan-order-dev.yml


20190408151551824.png


可以发现已经没有eureka的相关信息了。

再次启动artisan order ,启动成功。 查看注册中心 http://localhost:8762/


20190408151839781.png


遗留问题


修改配置自动刷新,还是没有实现,仅仅实现了从远端Git读取配置的功能,下一篇我们来实战下如何通过Spring Cloud Bus自动刷新配置


代码


配置文件远端存储Git: https://github.com/yangshangwei/spring-cloud-config-center

artisan order : https://github.com/yangshangwei/springcloud-o2o/tree/master/artisan_order

artisan config: https://github.com/yangshangwei/springcloud-o2o/tree/master/artisan_config

eureka server : https://github.com/yangshangwei/springcloud-o2o/tree/master/eureka-server

相关实践学习
日志服务之使用Nginx模式采集日志
本文介绍如何通过日志服务控制台创建Nginx模式的Logtail配置快速采集Nginx日志并进行多维度分析。
相关文章
|
19天前
|
移动开发 JavaScript 前端开发
UniApp H5 跨域代理配置并使用(配置manifest.json、vue.config.js)
这篇文章介绍了在UniApp H5项目中处理跨域问题的两种方法:通过修改manifest.json文件配置h5设置,或在项目根目录创建vue.config.js文件进行代理配置,并提供了具体的配置代码示例。
UniApp H5 跨域代理配置并使用(配置manifest.json、vue.config.js)
|
21天前
|
Cloud Native Java Nacos
Spring Cloud Config、Apollo、Nacos和Archaius对比
这篇文章对比了Spring Cloud Config、Apollo、Nacos和Archaius这四种配置中心的适应场景、优缺点。文中讨论了它们的功能特点,例如Spring Cloud Config的集中化配置管理和动态刷新能力,Apollo的实时配置推送和权限治理,Nacos的服务发现和管理功能,以及Archaius的动态配置更新能力。文章指出选择配置中心应根据项目需求和架构来决定,并提供了一个对比图来帮助读者更直观地理解这些工具的差异。
33 1
Spring Cloud Config、Apollo、Nacos和Archaius对比
|
27天前
|
JSON 前端开发 JavaScript
vue.config.js配置详解
【8月更文挑战第16天】vue.config.js配置详解
26 1
vue.config.js配置详解
|
24天前
|
Web App开发 安全 JavaScript
【Azure 应用服务】App Service 通过配置web.config来添加请求返回的响应头(Response Header)
【Azure 应用服务】App Service 通过配置web.config来添加请求返回的响应头(Response Header)
|
24天前
|
缓存 NoSQL 网络协议
【Azure Redis 缓存】如何使得Azure Redis可以仅从内网访问? Config 及 Timeout参数配置
【Azure Redis 缓存】如何使得Azure Redis可以仅从内网访问? Config 及 Timeout参数配置
|
25天前
|
JavaScript Java Python
【Azure 应用服务】在Azure App Service for Windows 中部署Java/NodeJS/Python项目时,web.config的配置模板内容
【Azure 应用服务】在Azure App Service for Windows 中部署Java/NodeJS/Python项目时,web.config的配置模板内容
|
1月前
|
测试技术
Profile Config 多环境不同配置
Profile Config 多环境不同配置
23 0
|
26天前
|
资源调度 Java 调度
Spring Cloud Alibaba 集成分布式定时任务调度功能
定时任务在企业应用中至关重要,常用于异步数据处理、自动化运维等场景。在单体应用中,利用Java的`java.util.Timer`或Spring的`@Scheduled`即可轻松实现。然而,进入微服务架构后,任务可能因多节点并发执行而重复。Spring Cloud Alibaba为此发布了Scheduling模块,提供轻量级、高可用的分布式定时任务解决方案,支持防重复执行、分片运行等功能,并可通过`spring-cloud-starter-alibaba-schedulerx`快速集成。用户可选择基于阿里云SchedulerX托管服务或采用本地开源方案(如ShedLock)
|
20天前
|
人工智能 前端开发 Java
【实操】Spring Cloud Alibaba AI,阿里AI这不得玩一下(含前后端源码)
本文介绍了如何使用 **Spring Cloud Alibaba AI** 构建基于 Spring Boot 和 uni-app 的聊天机器人应用。主要内容包括:Spring Cloud Alibaba AI 的概念与功能,使用前的准备工作(如 JDK 17+、Spring Boot 3.0+ 及通义 API-KEY),详细实操步骤(涵盖前后端开发工具、组件选择、功能分析及关键代码示例)。最终展示了如何成功实现具备基本聊天功能的 AI 应用,帮助读者快速搭建智能聊天系统并探索更多高级功能。
152 2
【实操】Spring Cloud Alibaba AI,阿里AI这不得玩一下(含前后端源码)
|
29天前
|
Java 微服务 Spring
SpringBoot+Vue+Spring Cloud Alibaba 实现大型电商系统【分布式微服务实现】
文章介绍了如何利用Spring Cloud Alibaba快速构建大型电商系统的分布式微服务,包括服务限流降级等主要功能的实现,并通过注解和配置简化了Spring Cloud应用的接入和搭建过程。
SpringBoot+Vue+Spring Cloud Alibaba 实现大型电商系统【分布式微服务实现】