配置中心Server端

时间:2023-12-05 09:15:08

为什么需要统一配置中心

1、不方便维护。一个功能被多个人开发,如果其中一个人修改了配置文件,另外一个人测试之前的功能,准备使用之前的配置。

2、配置内容安全与权限。线上的配置是不会对开发公开,特别是数据库的账号和密码。把配置文件隔离,不放在开发环境中。

3、更新配置项目需要重启

解决方法:增加配置中心

1、创建config工程

配置中心Server端

2、选择Config Server 和 Eureka Discovery

配置中心Server端

配置中心Server端

3.pom.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.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>config</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>config</name>
<description>Demo project for Spring Boot</description> <properties>
<java.version>1.8</java.version>
<spring-cloud.version>>Greenwich.M1</spring-cloud.version>
</properties> <dependencies>
<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> <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> <repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</repository>
</repositories> </project>

  

4、配置EnableDiscoveryClient

配置中心Server端

5、配置文件

配置中心Server端

6、查看注册中心

配置中心Server端

说明Config 已经注册上来了。

7、要想成为Config server,还需要增加注解@EnableConfigServer

配置中心Server端

8、在码云上创建git项目 config -repo

1)增加order.yml 文件

配置中心Server端

2)、增加order-dev.yml文件,环境env为env

配置中心Server端

3)、增加环境

配置中心Server端

4)、增加release,在order-dev.yml文件增加label

label:
release
9、测试
application.yml配置文件如下
配置中心Server端

运行config工程

 运行结果
http://localhost:8080/order-dev.yml
配置中心Server端

http://localhost:8080/release/order-dev.yml   release就是在码云上创建的release分支

配置中心Server端