SpringCloud------客户端服务适配配置中心

Posted 玉天恒

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringCloud------客户端服务适配配置中心相关的知识,希望对你有一定的参考价值。

1.前提

配置中心已经完成配置

参考

https://www.cnblogs.com/tianhengblogs/p/12507862.html

 

2.添加依赖

<!-- config client -->
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-config-client</artifactId>
</dependency>

 

3.修改application.yml为bootstrap.yml

 

4.修改bootstrap.yml

除了以下配置,其它配置放到git服务器配置

eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:8761/eureka/

spring:
  application:
    name: product-service
  cloud:
    config:
      discovery:
        enabled: true
        #指定从哪个配置中心读取配置
        service-id: config-server
      #文件名称(前缀)
      name: product-service
      #文件名称(后缀,可添加多个)环境dev,test
      profile: test
      #分支master(默认),test
      label: test

 

以上是关于SpringCloud------客户端服务适配配置中心的主要内容,如果未能解决你的问题,请参考以下文章

SpringCloud Gateway

springCloud:Ribbon实现客户端侧负载均衡-消费者整合Ribbon

服务器标配万兆网口,没有千兆网口怎么办

springcloud --consul

SpringCloud 学习笔记总结

SpringCloud 学习笔记总结