spring cloud深刻學習(八)-----配置中心svn示例和refresh

svn版本

一樣先示例server端的代碼,基本步驟同樣。git

一、添加依賴

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

須要多引入svnkitr包github

二、配置文件

server:
  port: 8001

spring:
  cloud:
    config:
      server:
        svn:
          uri: http://192.168.0.6/svn/repo/config-repo
          username: username
          password: password
        default-label: trunk
  profiles:
    active: subversion
  application:
    name: spring-cloud-config-server

和git版本稍有區別,須要顯示聲明subversion.web

三、啓動類

啓動類沒有變化,添加@EnableConfigServer激活對配置中心的支持算法

@EnableConfigServer
@SpringBootApplication
public class ConfigServerApplication {

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

四、測試

服務端測試

訪問:http://localhost:8001/neo-config-dev.properties,返回:neo.hello: hello im dev,說明服務端能夠正常讀取到svn代碼庫中的配置信息。修改配置文件neo-config-dev.properties中配置信息爲:neo.hello=hello im dev update,再次在瀏覽器訪問http://localhost:8001/neo-config-dev.properties,返回:neo.hello: hello im dev update。說明server端會自動讀取最新提交的內容spring

客戶端測試

客戶端直接使用上一篇示例項目spring-cloud-config-client來測試,配置基本不用變更。啓動項目後訪問:http://localhost:8002/hello,返回:hello im dev update``說明已經正確的從server端獲取到了參數。一樣修改svn配置並提交,再次訪問http://localhost:8002/hello依然獲取的是舊的信息,和git版本的問題同樣。json

refresh

如今來解決上一篇的遺留問題,這個問題在svn版本中依然存在。Spring Cloud Config分服務端和客戶端,服務端負責將git(svn)中存儲的配置文件發佈成REST接口,客戶端能夠從服務端REST接口獲取配置。但客戶端並不能主動感知到配置的變化,從而主動去獲取新的配置。客戶端如何去主動獲取新的配置信息呢,springcloud已經給咱們提供瞭解決方案,每一個客戶端經過POST方法觸發各自的/refresh瀏覽器

修改spring-cloud-config-client項目已到達能夠refresh的功能。安全

一、添加依賴

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

增長了spring-boot-starter-actuator包,spring-boot-starter-actuator是一套監控的功能,能夠監控程序在運行時狀態,其中就包括/refresh的功能。springboot

二、 開啓更新機制

須要給加載變量的類上面加載@RefreshScope,在客戶端執行/refresh的時候就會更新此類下面的變量值。服務器

@RestController
@RefreshScope // 使用該註解的類,會在接到SpringCloud配置中心配置刷新的時候,自動將新的配置更新到該類對應的字段中。
class HelloController {

    @Value("${neo.hello}")
    private String hello;

    @RequestMapping("/hello")
    public String from() {
        return this.hello;
    }
}

三、測試

springboot 1.5.X 以上默認開通了安全認證,因此須要在配置文件application.properties添加如下配置

management.security.enabled=false

OK 這樣就改造完了,以post請求的方式來訪問http://localhost:8002/refresh 就會更新修改後的配置文件。

咱們再次來測試,首先訪問http://localhost:8002/hello,返回:hello im dev,我將庫中的值修改成hello im dev update。在win上面打開cmd執行curl -X POST http://localhost:8002/refresh,返回["neo.hello"]說明已經更新了neo.hello的值。咱們再次訪問http://localhost:8002/hello,返回:hello im dev update,客戶端已經獲得了最新的值。

每次手動刷新客戶端也很麻煩,有沒有什麼辦法只要提交代碼就自動調用客戶端來更新呢,github的webhook是一個好的辦法。

四、webhook

WebHook是當某個事件發生時,經過發送http post請求的方式來通知信息接收方。Webhook來監測你在Github.com上的各類事件,最多見的莫過於push事件。若是你設置了一個監測push事件的Webhook,那麼每當你的這個項目有了任何提交,這個Webhook都會被觸發,這時Github就會發送一個HTTP POST請求到你配置好的地址。

如此一來,你就能夠經過這種方式去自動完成一些重複性工做,好比,你能夠用Webhook來自動觸發一些持續集成(CI)工具的運做,好比Travis CI;又或者是經過 Webhook 去部署你的線上服務器。下圖就是github上面的webhook配置。

  • Payload URL :觸發後回調的URL
  • Content type :數據格式,兩種通常使用json
  • Secret :用做給POST的body加密的字符串。採用HMAC算法
  • events :觸發的事件列表。
events事件類型 描述
push 倉庫有push時觸發。默認事件
create 當有分支或標籤被建立時觸發
delete 當有分支或標籤被刪除時觸發

svn也有相似的hook機制,每次提交後會觸發post-commit腳本,咱們能夠在這裏寫一些post請求

這樣咱們就能夠利用hook的機制去觸發客戶端的更新,可是當客戶端愈來愈多的時候hook支持的已經不夠優雅,另外每次增長客戶端都須要改動hook也是不現實的。其實Spring Cloud給了咱們更好解決方案,後面文章來介紹。

相關文章
相關標籤/搜索