成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

SpringBoot統(tǒng)一配置中心

remcarpediem / 3535人閱讀

摘要:創(chuàng)建統(tǒng)一服務項目可以使用來初始化項目,選擇自己的以來就好。動態(tài)刷新配置目前如果我們修改了上的配置并不能馬上生效,需要我們的客戶端工程重啟才行,現在需要改造成自動刷新。

一直使用springboot搭建后端項目,所有的配置都寫到自己的resource目錄下,隨著微服務的項目越來越多,每個項目都需要自己的各種配置文件。而且后期一旦想要修改配置文件,就得重新發(fā)布一遍非常的麻煩,現在就來教教大家怎么統(tǒng)一在github上管理 這些配置,并做到一處修改處處生效,不需要重新發(fā)布項目。
1 創(chuàng)建統(tǒng)一服務項目

可以使用STS來初始化項目,選擇自己的以來就好。



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.4.RELEASE
         
    
    com.mike
    config-server
    0.0.1-SNAPSHOT
    config-server
    config server

    
        1.8
        Greenwich.SR1
    

    
        
            org.springframework.boot
            spring-boot-starter
        
        
            org.springframework.cloud
            spring-cloud-config-server
        

        
            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
            
        
    

創(chuàng)建bootstrap.yml文件,當然你可以使用application.ymlapplication.properties

spring:
  application:
    name: config-repo
  cloud:
    config:
      server:
        git:
          uri: https://github.com/mike/config-repo.git   #github倉庫地址
          username: mike      # 用戶名
          password: 123456      # 密碼

在github上創(chuàng)建一個config-repo倉庫,并添加配置文件:

兩個不同環(huán)境的配置
hello-pj-dev.yml

hello:
  text: hello spring dev

hello-pj-uat.yml

hello:
  text: hello spring uat

創(chuàng)建啟動類:

@SpringBootApplication
@EnableConfigServer
public class ConfigServerApplication {

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

}

啟動應用,訪問:
http://localhost:8080/hello-pj-dev.yml
http://localhost:8080/hello-pj-uat.yml
你就可以看到遠程的配置中心。

2 創(chuàng)建測試項目

pom



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.4.RELEASE
         
    
    com.mike
    hello-server
    0.0.1-SNAPSHOT
    hello-server
    hello server

    
        1.8
        Greenwich.SR1
    

    
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.cloud
            spring-cloud-starter-config
        

        
            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
            
        
    

創(chuàng)建bootstrap.yml文件,只能是這個文件,不能是application文件

server:
  port: 8082
spring:
  application:
    name: hello-pj
  cloud:
    config:
      profile: dev
      uri: http://localhost:8080/

這里面配置了讀取遠程配置文件的uri,注意application.name必須對應github上的文件名,最終訪問的是application.name+profile

創(chuàng)建測試controller

@RestController
public class TestController {
    @Value("${hello.text}")
    private String text;
    
    @GetMapping("/say")
    public String sayHello(){
        return text;
    }
}

訪問 http://localhost:8082/say,你就可以看到對應的配置。這樣你只需要在github上管理所有的配置就行了,但是記得"config-server"工程得一直啟動,通過它我們才能獲取github上的配置。

3 動態(tài)刷新配置

目前如果我們修改了github上的配置并不能馬上生效,需要我們的客戶端工程重啟才行,現在需要改造成自動刷新。

在客戶端工程中加入新的依賴:


??????????? org.springframework.cloud
?? ? ?????? spring-cloud-starter-bus-amqp
??????? 

修改bootstrap.yml文件

server:
  port: 8082
spring:
  application:
    name: hello-pj
  cloud:
    config:
      profile: dev
      uri: http://localhost:8080/
    bus:
      trace:
        enabled: true
rabbitmq:
    host: localhost
    port: 5672
    username: guest
    password: guest

注意需要借助rabbitmq,所以本地需要啟動rabbitmq。

在需要刷新的地方加入注解@RefreshScope

@RestController
@RefreshScope
public class TestController {
    @Value("${hello.text}")
    private String text;
    
    @GetMapping("/say")
    public String sayHello(){
        return text;
    }
}

這樣我們既可以隨時修改github上的配置文件,而不需要重啟應用。

如果對你有幫助,希望可以關注下我的公眾號:

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規(guī)行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://systransis.cn/yun/74333.html

相關文章

  • 基于SpringCloud FinchleySR1 SpringBoot 2x vue elemen

    摘要:介紹是基于微服務基礎腳手架對于日常開發(fā)而言提供基礎權限控制,動態(tài)菜單,才用前后端分離架構,前臺采用后臺使用提供接口。對于以后開發(fā),只需要在添加業(yè)務模塊即可,大大減少工作量。 介紹 panda是基于SpringCloud Finchley.SR1 、SpringBoot 2.x、 vue、element-ui 微服務基礎腳手架對于日常開發(fā)而言提供基礎權限控制,動態(tài)菜單,才用前后端分離架構...

    lansheng228 評論0 收藏0
  • 兩年了,我寫了這些干貨!

    摘要:開公眾號差不多兩年了,有不少原創(chuàng)教程,當原創(chuàng)越來越多時,大家搜索起來就很不方便,因此做了一個索引幫助大家快速找到需要的文章系列處理登錄請求前后端分離一使用完美處理權限問題前后端分離二使用完美處理權限問題前后端分離三中密碼加鹽與中異常統(tǒng)一處理 開公眾號差不多兩年了,有不少原創(chuàng)教程,當原創(chuàng)越來越多時,大家搜索起來就很不方便,因此做了一個索引幫助大家快速找到需要的文章! Spring Boo...

    huayeluoliuhen 評論0 收藏0
  • 【技術雜談】springcloud微服務之數據操作獨立模塊化

    摘要:而在這個微服務下,同樣需要進行數據操作,我不可能還要在下再一次進行集成,這樣大大的增加了代碼量。其次,是將有關數據操作的都單獨部署成一個模塊,比如我集成的模塊,集成的模塊,使用作為內存緩存模塊。 前言 相對于 spring 對 mybatis 以及 redis 等的整合所需要的各種配置文件,在 springboot 下,已經大大的簡化了,你可能只是需要增加個依賴,加個注解,然后在配置文...

    tianyu 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<