案例代碼:https://github.com/q279583842q/springcloud-e-bookjava
建立一個SpringCloud項目。git
咱們須要添加config-server的依賴,具體以下github
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.13.RELEASE</version> </parent> <groupId>com.bobo</groupId> <artifactId>config-server</artifactId> <version>0.0.1-SNAPSHOT</version> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Dalston.SR5</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
在此處的配置文件中咱們須要關聯碼雲或者GitHub。以碼云爲例web
首先咱們須要在碼雲上註冊一個帳號(https://gitee.com) 而後建立一個新的項目。spring
在配置文件中添加以下配置apache
spring.application.name=config-server server.port=9050 # 設置服務註冊中心地址,指向另外一個註冊中心 eureka.client.serviceUrl.defaultZone=http://dpb:123456@eureka1:8761/eureka/,http://dpb:123456@eureka2:8761/eureka/ #Git 配置 spring.cloud.config.server.git.uri=https://gitee.com/dengpbs/config #spring.cloud.config.server.git.username= #spring.cloud.config.server.git.password=
四個配置文件都有一個e-book屬性,只是值不同。而後將這個四個配置文件上傳到碼雲中咱們新建立的倉庫bootstrap
而後將項目中的四個配置文件刪除app
咱們須要在啓動類中添加eureka客戶端和config服務端的註解,具體以下:maven
@SpringBootApplication @EnableEurekaClient @EnableConfigServer public class ConfigServerStart { public static void main(String[] args) { SpringApplication.run(ConfigServerStart.class, args); } }
啓動服務,訪問測試
http://localhost:9050/config-client/testspring-boot
http://localhost:9050/config-client/default
http://localhost:9050/config-client/dev
經過訪問,咱們獲取到了位於碼雲倉庫中的屬性信息。
注意,上面案例中的配置文件的名稱,並非隨便命名的,而是有必定的規則來約束的,具體以下:
建立一個SpringCloud項目
配置中心的客戶端使用的依賴須要注意,不是config-server了,具體以下:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.13.RELEASE</version> </parent> <groupId>com.bobo</groupId> <artifactId>config-client</artifactId> <version>0.0.1-SNAPSHOT</version> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Dalston.SR5</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <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> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
注意在配置中心的客戶端服務中,配置文件的名稱必須是bootstrap.properties或者bootstrap.yml文件。
官方解釋:
Spring Cloud 構建於 Spring Boot 之上,在 Spring Boot 中有兩種上下文,一種是 bootstrap, 另一種是 application, bootstrap 是應用程序的父上下文,也就是說 bootstrap 加載優先於 applicaton。bootstrap 主要用於從額外的資源來加載配置信息,還能夠在本地外部配置文件中解密屬性。這兩個上下文共用一個環境,它是任何Spring應用程序的外部屬性的來源。bootstrap 裏面的屬性會優先加載,它們默認也不能被本地相同配置覆蓋。
spring.application.name=config-client server.port=9051 #設置服務註冊中心地址,指向另外一個註冊中心 eureka.client.serviceUrl.defaultZone=http://dpb:123456@eureka1:8761/eureka/,http://dpb:123456@eureka2:8761/eureka/ #默認 false,這裏設置 true,表示開啓讀取配置中心的配置 spring.cloud.config.discovery.enabled=true #對應 eureka 中的配置中心 serviceId,默認是 configserver spring.cloud.config.discovery.serviceId=config-server #指定環境 spring.cloud.config.profile=dev #git 標籤 spring.cloud.config.label=master
@SpringBootApplication @EnableEurekaClient public class ConfigClientStart { public static void main(String[] args) { SpringApplication.run(ConfigClientStart.class, args); } }
在控制中咱們嘗試獲取配置中心的數據,具體以下:
@RestController public class ShowController { @Value("${e-book}") private String msg; @RequestMapping("/showMsg") public String showMsg(){ return msg; } }
訪問:http://localhost:9051/showMsg
搞定~