1. ホーム
  2. Web プログラミング
  3. 関連情報

GitコンフィギュレーションへのConfig Server接続のコツ

2022-01-04 08:49:05

Config:Gitの設定にサーバーサイドで接続する、コードは以下の通りです。

1. 依存関係をインポートする

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-config-server</artifactId>
    </dependency>
</dependencies>

2. 設定ファイルの記述

server:
  port: 3344
spring:
  application:
    name: Git-config-3344
  #connect to remote repository
  cloud:
    config:
      server:
        git:
          uri: https://gitee.com/xiao-yunshan/gittest.git

3. スタートアップクラスの作成

@SpringBootApplication
@EnableConfigServer
public class Git_3344 {
    public static void main(String[] args) {
        SpringApplication.run(Git_3344.class,args);
    }
}

4. 起動アクセス

http://localhost:3344/application-dev.yml

Gitの設定に接続するConfigサーバサイドのTipsに関する記事はこれで終わりです。Gitの設定に接続するConfigサーバサイドのコンテンツに関連する記事は、BinaryDevelopの過去の記事を検索するか、以下の関連記事を引き続き閲覧してください。