Spring Cloud Config Server示例详细步骤图解

步骤1:使用Spring Initializr https://start.spring.io/创建一个Maven项目
步骤2:选择Spring Boot版本2.2.0 M6或更高版本。不要选择快照版本。
步骤3:提供群组名称。在我们的例子中是com.srcmini.microservices。
步骤4:提供工件ID。我们提供了spring-cloud-config-server。

Spring Cloud Config Server示例详细步骤图解

文章图片
步骤5:添加Spring Boot DevTools和Config Server依赖项。
Spring Cloud Config Server示例详细步骤图解

文章图片
步骤6:点击Generate the project按钮。将下载一个zip文件, 并将其解压缩到硬盘中。
步骤7:现在, 打开月食。导入下载的Maven项目。它将下载所需的文件。
在下一步中, 我们将创建一个简单的Git存储库, 并配置spring cloud配置服务器以从特定的Git存储库中获取值。我们需要安装本地Git。
安装Git并创建本地存储库 步骤1:从https://git-scm.com/下载Git并进行安装。
第2步:创建一个Git存储库, 并存储我们希望能够配置限制服务的文件。我们将尝试从spring-cloud-config-server访问它们。打开Git bash并键入以下命令:
【Spring Cloud Config Server示例详细步骤图解】创建一个新目录:
mkdir git-localconfig-repocd git-localconfig-repo/

初始化新的Git存储库:
git init

它初始化一个空的git仓库。
步骤3:现在移至spring-cloud-config-server项目, 并添加指向特定文件夹的链接。
  1. 右键单击spring-cloud-config-server项目。
  2. 单击构建路径-> 配置构建路径…
  3. 选择源选项卡。
  4. 单击链接源, 然后浏览文件夹git-localconfig-repo。
  5. 右键单击文件夹-> 新建-> 其他-> 文件-> 下一步-> 提供文件名:limits-service-properties-> Finish。
  6. 现在, 在属性文件中编写以下代码:
limits-service.minimum=8limits-service.maximum=888

步骤4:配置用户名和用户电子邮件:
git config -global user.email abc@example.comgit config -global user.name "abc"

该命令将提交使用git add命令添加的所有文件, 并且还将提交此后更改的所有文件。
git add -A

现在执行命令以提交存储库中的更改。它在版本历史记录中永久记录或快照文件。
git commit -m "first commit"

Spring Cloud Config Server示例详细步骤图解

文章图片
我们可以看到文件被两个新指令更改。这些说明在本地存储库中已更改。
点击这里下载spring-cloud-config-server

    推荐阅读