1. 程式人生 > >Spring Cloud配置中心客戶端讀取配置

Spring Cloud配置中心客戶端讀取配置

微服務連線配置中心來實現外部配置的讀取。

引入依賴

<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-eureka</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.cloud</groupId
>
<artifactId>spring-cloud-starter-config</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> <dependency> <groupId
>
org.springframework.retry</groupId> <artifactId>spring-retry</artifactId> </dependency> </dependencies>

spring-cloud-starter-config:配置中心客戶端的依賴。

spring-boot-starter-aop,spring-retry:這兩個是連線配置中心快速失敗和重試需要用到的依賴。

增加啟動類

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

新增配置

bootstrap.yml中新增如下配置,必須是bootstrap,application中不行。

spring: 
  application: 
    name: config-client
  cloud:
    config:
      #username: 
      #password: 
      name: ${git.application}
      profile: ${git.profile}
      label: ${git.label}
      fail-fast: true
      retry:
        initial-interval: 2000
        max-attempts: 5
      discovery: 
        enabled: true
        service-id: config-center 

eureka:
  client: 
    serviceUrl:
      defaultZone: ${register-center.urls}

可以看出配置比較簡單,下面也不再詳述。

application.yml配置檔案參考如下:

spring: 
  profiles: 
    active: config-client1

eureka:
  instance:
    prefer-ip-address: true  
    instance-id: ${spring.cloud.client.ipAddress}:${server.port}
    lease-expiration-duration-in-seconds: ${lease-expiration-duration-in-seconds}
    lease-renewal-interval-in-seconds: ${lease-renewal-interval-in-seconds}

---
spring: 
  profiles: config-client1

server: 
  port: ${config-client1.server.port}

---
spring: 
  profiles: config-client2

server: 
  port: ${config-client2.server.port}

Maven filter配置

... 

#git
git.application=application
git.profile=dev
git.label=master

...

讀取配置

@RestController
public class TestController {

    @Value("${username}")
    private String username;

...

使用Value就能讀取配置中心的配置,當然也可以通過其他方式獲取SpringCloud中的配置,參考之前SpringBoot系列文章。

啟動服務

通過指定Profile啟動兩臺微服務,它們可以讀取配置中心的內容。

spring-boot:run -Drun.profiles=config-client1 -P dev
spring-boot:run -Drun.profiles=config-client2 -P dev

推薦閱讀

分享Java乾貨,高併發程式設計,熱門技術教程,微服務及分散式技術,架構設計,區塊鏈技術,人工智慧,大資料,Java面試題,以及前沿熱門資訊等。