springcloud分布式配置中心

1.分布式架構(gòu)

1.1傳統(tǒng)架構(gòu)

image01.png

1.2分布式架構(gòu)

image02.png

1.3項目架構(gòu)

springcloud 版本 Hoxton.SR6

├── config-sever
│   ├── pom.xml
│   ├── src
│   │   ├── main
│   │   │   ├── java
│   │   │   │   └── com
│   │   │   │       └── zzm
│   │   │   │           └── zcd
│   │   │   │               └── ConfigServerApplication.java
│   │   │   └── resources
│   │   │       └── application.yml
├── eureka-server
│   ├── eureka-server.iml
│   ├── pom.xml
│   ├── src
│   │   ├── main
│   │   │   ├── java
│   │   │   │   └── com
│   │   │   │       └── zzm
│   │   │   │           └── zcd
│   │   │   │               └── ConfigEurekaServer.java
│   │   │   └── resources
│   │   │       └── application.yml
├── pom.xml
├── spring-cloud-config-demo.iml
└── system-service
    ├── pom.xml
    ├── src
    │   ├── main
    │   │   ├── java
    │   │   │   └── com
    │   │   │       └── zzm
    │   │   │           └── zcd
    │   │   │               ├── SystemServiceApplication.java
    │   │   │               ├── config
    │   │   │               │   └── ConfigInfoProperties.java
    │   │   │               └── controller
    │   │   │                   └── HelloController.java
    │   │   └── resources
    │   │       ├── application.yml
    │   │       └── bootstrap.yml


2.Spring Cloud 配置服務(wù)器

  • Spring Cloud Config Server

    Spring Cloud 配置服務(wù)器器提供分布式葱峡、動態(tài)化集中管理理應(yīng)?用配置信息的能?

  • 構(gòu)建 Spring Cloud 配置服務(wù)器

? @EnableConfigServer

啟動類

```java

/**

  • 服務(wù)配置中心

*/
@EnableDiscoveryClient
@EnableConfigServer
@SpringBootApplication
public class ConfigServerApplication {

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

}

```

配置文件

server:
  port: 7071

spring:
  cloud:
    config:
      server:
       git:
         #git倉庫文件地址
         uri: https://gitee.com/develop-alan-knowledge/zcd-config-file.git
         username: 1299076979@qq.com
         password: zcd123456
         #搜索文件夾配置文件
         search-paths: demo-config
  application:
    name: config-server
eureka:
  client:
    service-url:
      defaultZone: http://localhost:7070/eureka/
    healthcheck:
      enabled: true


3.Spring Cloud 配置客戶端

  • Spring Cloud Config Client

? Spring Cloud 配置客戶端提供連接 Spring Cloud 服務(wù)端浪南,并且獲取訂閱的配置信息

  • 配置Spring Cloud 配置客戶端

    • 創(chuàng)建 bootstrap.yml 或者 bootstrap.properties

    配置文件服務(wù)器地址一定要放在bootstrap.yml

    spring:
      cloud:
        config:
          #配置服務(wù)器地址
          uri: http://localhost:7071
          label: master
          name: application
          profile: dev
    
  • 配置 spring.cloud.config.* 信息

4.動態(tài)配置屬性Bean

  • @RefreshScope

    rest層需要加入@RefreshScope注解才能獲取最新配置

    @RefreshScope
    @RestController
    public class HelloController {
    
    
        @Autowired
        private ConfigInfoProperties configInfoProperties;
    
    
        @GetMapping("getInfo")
        public String getInfo(){
            return configInfoProperties.getConfig();
        }
    
    }
    
    

配置信息

@Component
@ConfigurationProperties(prefix = "com.springcloud")
public class ConfigInfoProperties {
    private String config;

    public String getConfig() {
        return config;
    }

    public void setConfig(String config) {
        this.config = config;
    }
}

  • /refresh Endpoint

    ? git文件中配置文件修改需要更新到客戶端需要執(zhí)行下面 Endpoint

    http://localhost:端口/actuator/refresh

    執(zhí)行上面Endpoint需要打開Endpoint配置

    management:
      endpoints:
        web:
          exposure:
            include: '*'
      endpoint:
        health:
          show-details: always
    
  • ContextRefresher

    org.springframework.cloud.endpoint.RefreshEndpoint源碼

    @Endpoint(id = "refresh")
    public class RefreshEndpoint {
    
      private ContextRefresher contextRefresher;
    
      public RefreshEndpoint(ContextRefresher contextRefresher) {
          this.contextRefresher = contextRefresher;
      }
    
      @WriteOperation
      public Collection<String> refresh() {
          Set<String> keys = this.contextRefresher.refresh();
          return keys;
      }
    
    }
    
    

actuator/refresh執(zhí)行是this.contextRefresher.refresh()方法

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末麻昼,一起剝皮案震驚了整個濱河市闷哆,隨后出現(xiàn)的幾起案子凸丸,更是在濱河造成了極大的恐慌,老刑警劉巖虱饿,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件桦踊,死亡現(xiàn)場離奇詭異,居然都是意外死亡力奋,警方通過查閱死者的電腦和手機榜旦,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來景殷,“玉大人溅呢,你說我怎么就攤上這事≡持浚” “怎么了咐旧?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長绩蜻。 經(jīng)常有香客問我铣墨,道長,這世上最難降的妖魔是什么办绝? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任伊约,我火速辦了婚禮姚淆,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘屡律。我一直安慰自己腌逢,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布疹尾。 她就那樣靜靜地躺著上忍,像睡著了一般。 火紅的嫁衣襯著肌膚如雪纳本。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天腋颠,我揣著相機與錄音繁成,去河邊找鬼。 笑死淑玫,一個胖子當(dāng)著我的面吹牛巾腕,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播絮蒿,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼尊搬,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了土涝?” 一聲冷哼從身側(cè)響起佛寿,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎但壮,沒想到半個月后冀泻,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡蜡饵,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年弹渔,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片溯祸。...
    茶點故事閱讀 38,161評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡肢专,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出焦辅,到底是詐尸還是另有隱情博杖,我是刑警寧澤,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布氨鹏,位于F島的核電站欧募,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏仆抵。R本人自食惡果不足惜跟继,卻給世界環(huán)境...
    茶點故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一种冬、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧舔糖,春花似錦娱两、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至摇庙,卻和暖如春旱物,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背卫袒。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工宵呛, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人夕凝。 一個月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓宝穗,卻偏偏與公主長得像,于是被迫代替她去往敵國和親码秉。 傳聞我的和親對象是個殘疾皇子逮矛,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,916評論 2 344