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

这篇我们来整合Config组件,就是专门用于读取配置文件的组件,这篇博文将教大家怎么将项目与github打通。

不多说,我们开始整合, 创建一个springboot项目,起名config-server:

Springboot 整合 SpringCloud组件-Config 配置中心 ConfigServer (六)_第1张图片

pom.xml:

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



	4.0.0
	
		org.springframework.boot
		spring-boot-starter-parent
		2.1.6.RELEASE
		 
	
	com.cloud
	config-server
	0.0.1-SNAPSHOT
	config-server
	Demo project for Spring Boot

	
		1.8
		Finchley.RELEASE
	

	
		
			org.springframework.cloud
			spring-cloud-config-server
		
		
			org.springframework.cloud
			spring-cloud-starter-netflix-eureka-client
			2.0.0.RELEASE
		
		
			org.springframework.boot
			spring-boot-starter-test
			test
		
	

	
		
			
				org.springframework.cloud
				spring-cloud-dependencies
				${spring-cloud.version}
				pom
				import
			
		
	

	
		
			
				org.springframework.boot
				spring-boot-maven-plugin
			
		
	


然后是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 (六)_第2张图片

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 (六)_第3张图片

最后在项目启动类加上注解:

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 (六)_第4张图片

可以看到返回值就是我们配置文件里面的值,证明 服务实例已经和github成功打通, 那么下篇https://blog.csdn.net/qq_35387940/article/details/94619086

我们来实现Config Client(这里的Config Client其实也就是一个微服务),通过连接 Config Server去读取配置文件中的值。 

你可能感兴趣的:(Springcloud,带你从零掌握,SpringCloud,跟我一起玩转,SpringBoot)