Spring Cloud教程-设置 Spring Cloud Config Server
设置 Spring Cloud Config Server
步骤 1:使用 Spring Initializr 创建一个 Maven 项目:https://start.spring.io/
步骤 2:选择 Spring Boot 版本为 2.2.0 M6 或更高版本。不要选择快照版本。
步骤 3:提供 Group 名称。在我们的案例中为 cn.javatiku.microservices.
步骤 4:提供 Artifact id。我们提供了 spring-cloud-config-server。
步骤 5:添加 Spring Boot DevTools 和 Config Server 依赖项。
步骤 6:点击 Generate the project 按钮。将会下载一个 zip 文件,将其解压到硬盘上。
步骤 7:现在打开 eclipse。导入下载的 Maven 项目。它会下载所需的文件。
在接下来的步骤中,我们将创建一个简单的 Git 存储库,并配置 Spring Cloud Config Server 从特定的 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"
我们可以看到一个文件被更改,并添加了两个新指令。这些指令已在本地存储库中更改。