设置Spring Cloud Config Server

步骤1:使用Spring Initializr => https://start.spring.io/ 创建一个Maven项目。
步骤2:选择Spring Boot版本2.2.0 M6或更高版本,不要选择快照版本。
步骤3:提供群组名称(Group)。 在这个例子中是:com.xntuor.microservices
步骤4:提供工件ID(Artifact id),这里输入:spring-cloud-config-server
设置Spring Cloud Config Server

步骤5:添加Spring Boot DevToolsConfig Server依赖项。

设置Spring Cloud Config Server

步骤6:点击Generate the project按钮。将下载一个zip文件,并将其解压缩到一个你方便的目录中。

步骤7:现在,打开Eclipse。导入下载的Maven项目。它将下载所需的文件。

在下一步中,我们将创建一个简单的Git存储库,并配置Spring Cloud配置服务器以从特定的Git存储库中获取值。需要安装本地Git。

安装Git并创建本地存储库

第1步:https://git-scm.com/ 下载Git并进行安装。

第2步:创建一个Git存储库,并存储我们希望能够配置限制服务的文件。从spring-cloud-config-server访问它们。 打开Git bash并键入以下命令:

创建一个新目录:

mkdir git-localconfig-repo   cd git-localconfig-repo/ 

初始化新的Git存储库:

git init 

它初始化一个空的git仓库。

第3步:现在移至spring-cloud-config-server项目,并添加指向特定文件夹的链接。

  • 右键单击:spring-cloud-config-server项目。
  • 单击:Build Path->Configure Build Path…
  • 选择:Source选项卡。
  • 单击:Link Source,然后浏览文件夹git-localconfig-repo
  • 右键单击文件夹,选择:New -> Other -> File -> Next,提供文件名:limits-service-properties ,然后点击:Finish
  • 在属性文件中编写以下代码:
limits-service.minimum=8   limits-service.maximum=888 

第4步:配置用户名和用户电子邮件:

git config -global user.email abc@example.com   git config -global user.name "abc" 

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

git add -A 

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

git commit -m "first commit" 

设置Spring Cloud Config Server

我们可以看到文件被两个新指令更改,这些说明在本地存储库中已更改。

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/264024.html

(0)
上一篇 2022年6月6日 22:46
下一篇 2022年6月6日 22:49

相关推荐

发表回复

登录后才能评论