天天看點

Springboot 整合 SpringCloud元件-Config 配置中心 ConfigServer (六)

這篇我們來整合Config元件,就是專門用于讀取配置檔案的元件,這篇博文将教大家怎麼将項目與github打通。

不多說,我們開始整合, 建立一個springboot項目,起名config-server:

Springboot 整合 SpringCloud元件-Config 配置中心 ConfigServer (六)

pom.xml:

 (springcloud我使用的是Finchley.RELEASE 版本,跟之前的教程博文保持一緻版本)

<?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.6.RELEASE</version>
		<relativePath/> <!-- lookup parent from repository -->
	</parent>
	<groupId>com.cloud</groupId>
	<artifactId>config-server</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<name>config-server</name>
	<description>Demo project for Spring Boot</description>

	<properties>
		<java.version>1.8</java.version>
		<spring-cloud.version>Finchley.RELEASE</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>
			<version>2.0.0.RELEASE</version>
		</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>

</project>
           

然後是application.yml:

eureka:
  instance:
#以IP位址注冊到服務中心,互相注冊使用IP位址
    preferIpAddress: true
    instance-id: ${spring.cloud.client.ip-address}:${server.port}
  client:
    serviceUrl:
      defaultZone: http://localhost:8761/eureka/
server:
  port: 8888
spring:
  cloud:
    config:
      server:
        git:
          uri: https://github.com/JCcccT/TestConfig.git
          searchPaths: testInfo
        default-label: master
  application:
    name: config-server
           

這裡,我需要給初學者特意講下, config-server

1.在配置檔案裡面是将這個配置中心也注冊到了Eureka注冊中心裡去了,這個并不是強制的,也可以不注冊到EurekaServer的

2.git的uri,怎麼擷取的呢,如下圖:

Springboot 整合 SpringCloud元件-Config 配置中心 ConfigServer (六)

3.searchPaths 這個是搜查具體配置檔案的路徑,因為我的配置檔案 名為:client-test-dev.properties,而這個檔案放在了檔案夾testInfo裡;

4.這個配置檔案起名字也是有講究的,

一共支援以下幾種方式:

  1. /{application}/{profile}[/{label}]
  2. /{application}-{profile}.yml
  3. /{label}/{application}-{profile}.yml
  4. /{application}-{profile}.properties
  5. /{label}/{application}-{profile}.properties

而我采用的是第2種方式(client-test-dev.properties):

  • label 分支名稱 如:master dev ,不寫就是master。
  • application 配置檔案名稱(client-test 後面我們在寫config client服務的時候,項目名就是取 client-test)
  • profiles 環境名稱,不可省略,假如我們的倉庫中配置檔案命名沒有環境名稱,可以profile可以寫為-a (dev)

 我的檔案裡面的内容寫了一個key和值:

Springboot 整合 SpringCloud元件-Config 配置中心 ConfigServer (六)

最後在項目啟動類加上注解:

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;

@EnableEurekaClient
@EnableConfigServer
@SpringBootApplication
public class ConfigServerApplication {

	public static void main(String[] args) {
		SpringApplication.run(ConfigServerApplication.class, args);
	}

}
           

OK,Config Server到此 已經整合完畢了,我們将服務跑起來,通路下:http://localhost:8888/client-test-dev.properties :

Springboot 整合 SpringCloud元件-Config 配置中心 ConfigServer (六)

可以看到傳回值就是我們配置檔案裡面的值,證明 服務執行個體已經和github成功打通, 那麼下篇https://blog.csdn.net/qq_35387940/article/details/94619086

我們來實作Config Client(這裡的Config Client其實也就是一個微服務),通過連接配接 Config Server去讀取配置檔案中的值。