在以前的《Spring Cloud構建微服務架構:分佈式配置中心》一文中,咱們介紹的Spring Cloud Server配置中心採用了Git的方式進行配置信息存儲。這一設計巧妙的利用Git自身機制以及其餘具備豐富功能的Git服務端產品,讓Spring Cloud Server在配置存儲和管理的上避開了不少與管理相關的複雜實現,使其具有了配置中心存儲配置和讀取配置的基本能力;而更上層的管理機制,因爲不具有廣泛適用性,因此Spring Cloud Server並無本身去實現這部份內容,而是經過Git服務端產品來提供一部分實現,若是還須要更復雜的功能也能本身實現與定義。即使如此,對於Spring Cloud Server默認使用Git來存儲配置的方案一直以來仍是飽受爭議。因此,本文將介紹一下Spring Cloud Config從Edgware版本開始新增的一種配置方式:採用數據庫存儲配置信息。java
第一步:建立一個基礎的Spring Boot項目,在pom.xml中引入幾個主要依賴:mysql
spring-cloud-config-server
:配置中心的基礎依賴spring-boot-starter-jdbc
:因爲須要訪問數據庫,因此須要加載jdbc的依賴mysql-connector-java
:MySQL數據庫的鏈接包flyway-core
:該內容非強制,主要用來管理schema(若是您不瞭解能夠看一下這篇文章)<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.11.RELEASE</version>
<relativePath/>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<version>5.0.3</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.21</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Edgware.SR3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
複製代碼
第二步:準備schema建立文件。在resources
下建立schema
目錄,並加入V1__Base_version.sql
文件,具體內容以下:git
CREATE TABLE `properties` (
`id` int(11) NOT NULL,
`key` varchar(50) NOT NULL,
`value` varchar(500) NOT NULL,
`application` varchar(50) NOT NULL,
`profile` varchar(50) NOT NULL,
`label` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
複製代碼
該腳本會在程序運行時由flyway自動執行github
第三步:建立應用主類,具體以下:spring
@EnableConfigServer
@SpringBootApplication
public class ConfigServerBootstrap {
public static void main(String[] args) {
ApplicationContext context = SpringApplication.run(ConfigServerBootstrap.class);
// 測試用數據,僅用於本文測試使用
JdbcTemplate jdbcTemplate = context.getBean(JdbcTemplate.class);
jdbcTemplate.execute("delete from properties");
jdbcTemplate.execute("INSERT INTO properties VALUES(1, 'com.didispace.message', 'test-stage-master', 'config-client', 'stage', 'master')");
jdbcTemplate.execute("INSERT INTO properties VALUES(2, 'com.didispace.message', 'test-online-master', 'config-client', 'online', 'master')");
jdbcTemplate.execute("INSERT INTO properties VALUES(3, 'com.didispace.message', 'test-online-develop', 'config-client', 'online', 'develop')");
jdbcTemplate.execute("INSERT INTO properties VALUES(4, 'com.didispace.message', 'hello-online-master', 'hello-service', 'online', 'master')");
jdbcTemplate.execute("INSERT INTO properties VALUES(5, 'com.didispace.message', 'hello-online-develop', 'hello-service', 'online', 'develop')");
}
}
複製代碼
這裏增長了一些測試用數據,以便於後續的配置讀取驗證。sql
第四步:配置application.properties
,具體內容以下:數據庫
spring.application.name=config-server-db
server.port=10020
spring.profiles.active=jdbc
spring.cloud.config.server.jdbc.sql=SELECT `KEY`, `VALUE` from PROPERTIES where APPLICATION=? and PROFILE=? and LABEL=?
spring.datasource.url=jdbc:mysql://localhost:3306/config-server-db
spring.datasource.username=root
spring.datasource.password=
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
flyway.locations=/schema
複製代碼
這裏主要涉及幾個配置:json
spring.profiles.active=jdbc
:必須設置,將配置中心的存儲實現切換到jdbc的方式spring.cloud.config.server.jdbc.sql
:非必須,這裏因爲採用mysql數據源,key
、value
是保留關鍵詞,原生的實現語句會報錯,因此須要重寫一下這句查詢語句(若是存儲的表結構設計不一樣於上面準備的內容,也能夠經過這個屬性的配置來修改配置的獲取邏輯)spring.datasource.*
:存儲配置信息的數據源配置,這裏採用mysql,開發者根據本身實際狀況修改flyway.locations
:flyway加載schema建立sql的位置完成了上一節內容以後,咱們就已經構建一個經過數據酷來存儲配置內容的配置中心了,下面咱們能夠經過配置中心暴露的端點來嘗試讀取配置。架構
第一步:先將上面構建的配置中心啓動起來。app
第二步:驗證配置信息獲取:
curl http://localhost:10020/config-client/stage/
,獲取信息config-client
服務stage
環境的配置內容,根據上面的數據準備,咱們會得到以下返回內容:{
"name": "config-client",
"profiles": [
"stage"
],
"label": null,
"version": null,
"state": null,
"propertySources": [
{
"name": "config-client-stage",
"source": {
"com.didispace.message": "test-stage-master"
}
}
]
}
複製代碼
curl http://localhost:10020/hello-service/stage/develop
,獲取信息hello-service
服務,stage
環境,develop
標籤的配置內容,根據上面的數據準備,咱們會得到以下返回內容:{
"name": "hello-service",
"profiles": [
"online"
],
"label": "develop",
"version": null,
"state": null,
"propertySources": [
{
"name": "hello-service-online",
"source": {
"com.didispace.message": "hello-online-develop"
}
}
]
}
複製代碼
關於如何訪問Spring Cloud Config構建配置中心獲取配置信息的詳細內容 ,能夠查看前文:《Spring Cloud構建微服務架構:分佈式配置中心》,本文不作詳細介紹。
本文主要具體介紹了在Spring Cloud Config在Edgware版本開始新增的JDBC存儲的使用思路,具體使用實際上還有不少能夠優化的空間,好比:索引的優化、查詢語句的優化;若是還須要進一步定製管理,對於表結構的優化也是頗有必要的。
最後,安利一個基於Spring Cloud Config的配置管理項目:github.com/dyc87112/sp…,正在緊鑼密鼓的開發中,盡情期待!
讀者能夠根據喜愛選擇下面的兩個倉庫中查看config-server-db
和config-client
兩個項目:
若是您對這些感興趣,歡迎star、follow、收藏、轉發給予支持!