编辑
2024-05-06
实用工具
00
请注意,本文编写于 332 天前,最后修改于 332 天前,其中某些信息可能已经过时。

目录

介绍
创建配置中心模块
依赖配置
配置application
其他模块使用配置中心

介绍

Spring Cloud Config 用于为分布式系统中的基础设施和微服务应用提供集中化的外部配置支持,分为服务端和客户端。 服务端为分布式配置中心,是一个独立的微服务应用;客户端为分布式系统中的基础设置或微服务应用,通过指定配置中心来管理相关的配置。 Spring Cloud Config 构建的配置中心,除了适用于 Spring 构建的应用外,也可以在任何其他语言构建的应用中使用。 Spring Cloud Config 默认采用 Git 存储配置信息,天然支持对配置信息的版本管理。

创建配置中心模块

依赖配置

xml
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.8.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.lhw.emr</groupId> <artifactId>config</artifactId> <version>0.0.1-SNAPSHOT</version> <name>config</name> <description>微服务统一配置服务</description> <properties> <java.version>1.8</java.version> <spring-cloud.version>Greenwich.SR3</spring-cloud.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>

配置application

yml
server: port: 7780 spring: application: name: microservice-config profiles: active: native cloud: config: server: #git: # 远程库的git地址 # uri: https://github.com/lhw/lhwConfig # search-paths: native: #search-locations: classpath:/properties/ search-locations: file:D:/lhw_micro/ #地址 http://localhost:7780/lhwConfig-dictionary.yml bootstrap: true

其他模块使用配置中心

前提:

  • 这个模块得注册在注册中心服务中
  • 这个模块得配置cloud config依赖

创建 bootstrap.yml文件,在里面配置

java
spring: cloud: config: name: lhwConfig #目录下文件名称 profile: 这个模块在配置中心中的名字 #环境配置项 uri: http://lhwserver:7780 #Config配置中心地址,通过它获取配置文件spring.profiles

本文作者:Weee

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!