spring cloud 分布式配置中心

  • 本文springboot版本:2.0.2.RELEASE,springcloud版本:Finchley.RC1

本文使用我公开的注册中心: http://www.wekri.com/eureka;

UI: http://www.wekri.com/eureka_ui;

配置仓库

本文使用码云git库,实际环境最好使用公司内部git服务。

demo仓库:https://gitee.com/wekri/spring-cloud-config-repo.git

创建config server

依赖:

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

启动方法加上@EnableConfigServer注解开启配置服务器的功能

@EnableConfigServer
@EnableDiscoveryClient
@SpringBootApplication
public class ConfigurationServiceApplication {

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

项目配置文件:bootstrap.yml
- config.label:使用仓库的分支
- server.git.uri:配置git仓库地址
- server.git.search-paths:
- server.git.username:git仓库用户名
- server.git.password:git仓库密码

注意:如果使用application.properties配置文件,{application}不需要加单引号,
如果使用bootstrap.yml配置文件,'{application}'需要加上单引号。

server:
    port: 8080

spring:
    application:
        name: config-server
    cloud:
        config:
          label: master
          server:
            git:
              uri: https://gitee.com/wekri/spring-cloud-config-repo.git
              search-paths: '{application}'
              username: 
              password: 

eureka:
    client:
        serviceUrl.defaultZone: http://goma.wekri.com/eureka
    instance:
        hostname: localhost
        instance-id: config-server

然后启动项目,就可以访问到配置了http://127.0.0.1:8080/config-client/dev

http请求地址和资源文件映射如下:

/{application}/{profile}[/{label}]
/{application}-{profile}.yml
/{label}/{application}-{profile}.yml
/{application}-{profile}.properties
/{label}/{application}-{profile}.properties

客户端使用

新建一个springboot项目:configuration-client

依赖

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

配置文件:

server:
    port: 8088

spring:
    application:
        name: config-client
    profiles:
      active: dev
    cloud:
        config:
            profile: ${spring.profiles.active} #dev,test,staging,prod
            discovery:
                enabled: true  # 默认false,设为true表示使用注册中心中的configserver配置而不自己配置configserver的uri
                serviceId: config-server  # 指定config server在服务发现中的serviceId,默认为:configserver
eureka:
    client:
        serviceUrl.defaultZone: http://goma.wekri.com/eureka
    instance:
        hostname: localhost

启动项目,可以使用environment.getProperty("env")获取到相应的配置。

码云源码:查看

转载声明:商业转载请联系作者获得授权,非商业转载请注明出处 © wekri

原文地址:http://www.wekri.com/2018/05/17/springcloud/springCloudConfig

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值