当前位置: 首页 > 编程笔记 >

spring-cloud入门之spring-cloud-config(配置中心)

仉伟兆
2023-03-14
本文向大家介绍spring-cloud入门之spring-cloud-config(配置中心),包括了spring-cloud入门之spring-cloud-config(配置中心)的使用技巧和注意事项,需要的朋友参考一下

前言

在分布式系统中,由于服务数量巨多,为了方便服务配置文件统一管理,实时更新,所以需要分布式配置中心组件:spring-cloud-config ,它支持配置服务放在配置服务的内存中(即本地),也支持放在远程Git仓库中。

本节主要演示怎么用Git仓库作为配置源。

开源地址:https://github.com/bigbeef

创建配置项目

在github中创建一个项目,专门用来保存我们所有项目的配置文件,项目是我的项目结构

配置项目地址:https://github.com/bigbeef/cppba-config

eureka-server.properties

eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
spring.application.name=eureka-server
server.port=18761
eureka.instance.hostname=peer1
eureka.client.serviceUrl.defaultZone=http://peer1:18761/eureka/

创建spring-cloud-config-server项目

项目结构如图:


pom.xml核心代码

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

SpringCloudConfigServerApplication.java

package com.cppba;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;

@SpringBootApplication
@EnableConfigServer
public class SpringCloudConfigServerApplication {

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

application.properties

这个根据自己实际的git项目修改配置

server.port=8888

spring.application.name=config-server

spring.cloud.config.server.git.uri=https://github.com/bigbeef/cppba-config
spring.cloud.config.label=master
# spring.cloud.config.server.git.username=
# spring.cloud.config.server.git.password=

spring.cloud.config.server.git.searchPaths=\
 cppba-spring-cloud/*,\
 cppba-spring-cloud/eureka-client/*

spring.cloud.config.server.git.uri:配置git仓库地址
spring.cloud.config.server.git.searchPaths:配置仓库路径,以逗号隔开
spring.cloud.config.label:配置仓库的分支
spring.cloud.config.server.git.username:访问git仓库的用户名
spring.cloud.config.server.git.password:访问git仓库的用户密码

启动项目

访问地址:http://127.0.0.1:8888

http请求地址和资源文件映射如下:
/{application}/{profile}[/{label}]
/{application}-{profile}.yml
/{label}/{application}-{profile}.yml
/{application}-{profile}.properties
/{label}/{application}-{profile}.properties

根据我们自己的配置,我们可以这样访问:http://127.0.0.1:8888/eureka-server/default/master

application -> eureka-server (应用名)
profile -> default (启用的配置,通常是后缀,下面解释)
label -> master (分支)

访问到的结果就是:

profile比较重要,可以理解成读取哪些配置文件,假如我不止一个配置文件,可能会有:

eureka-server.properties(这个是通用配置文件,默认都会加载),
eureka-server-mysql.properties,
eureka-server-oracle.properties,
eureka-server-jpa.properties,
eureka-server-mysql.properties......

我们可能会选择性的加载其中的部分properties配置文件,那我们可以这样写:http://127.0.0.1:8888/eureka-server/default,mysql,jpa/master

到此,我们的spring-cloud-config-server就简单搭起来,后面的章节我会教大家怎么在项目中读取配置

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。

 类似资料:
  • 本文向大家介绍spring cloud学习入门之config配置教程,包括了spring cloud学习入门之config配置教程的使用技巧和注意事项,需要的朋友参考一下 前言 本文主要给大家分享了关于spring cloud的入门教程,主要介绍了config配置的相关内容,下面话不多说了,来一起看看看详细的介绍吧。 简介 Spring cloud config 分为两部分 server clie

  • 只要遵循默认设置,如http、localhost和8200,存储库endpoint和tls_disable=1关闭SSL,一切都可以正常工作。然而,对于任何实际环境来说,这些都不是实用的设置,而且很少有任何地方的例子对此有所帮助。有人能提供一个可行的例子吗? 我已经成功地设置了启用TLS的保险库。我已经成功地设置了一个配置服务器,该服务器使用自签名证书进行连接。我甚至可以将一个秘密值注入配置服务器

  • 主要内容:Spring Cloud Config,Spring Cloud Config 工作原理,Spring Cloud Config 的特点,搭建 Config 服务端,搭建 Config 客户端,手动刷新配置,Config+Bus 实现配置的动态刷新在分布式微服务系统中,几乎所有服务的运行都离不开配置文件的支持,这些配置文件通常由各个服务自行管理,以 properties 或 yml 格式保存在各个微服务的类路径下,例如 application.properties 或 applicat

  • Dalston.RELEASE Spring Cloud Config为分布式系统中的外部配置提供服务器和客户端支持。使用Config Server,您可以在所有环境中管理应用程序的外部属性。客户端和服务器上的概念映射与Spring Environment和PropertySource抽象相同,因此它们与Spring应用程序非常契合,但可以与任何以任何语言运行的应用程序一起使用。随着应用程序通过从

  • 仍在努力完成这项任务。我有以下东西: Pivotal Cloud Foundry-弹性运行时1.7。5 SCCS实例正确地连接到我的BitBucket存储库,并且它是在线的。我试图推动Spring-Cloud-dataflow-server-Cloud Foundry-1.0.0。m4.jar以下舱单: 在我的BitBucket repo中,我有以下属性文件保存环境变量:scdf dev abc。

  • 我想问两个关于Spring云配置的问题。 1)是否可以执行Spring Cloud Config Server的实现来恢复基本mongob而不是git的属性? 2) 当您在Spring Cloud Config Server中的所有权发生更改时,Spring Cloud Config客户端安装程序会自动更新吗? 谢谢!!!