您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關spring-cloud中如何創建配置項目,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
創建配置項目
在github中創建一個項目,專門用來保存我們所有項目的配置文件,項目是我的項目結構
配置項目地址:https://github.com/bigbeef/cppba-config
eureka-server.properties
eureka.client.register-with-eureka=false eureka.client.fetch-registry=false spring.application.name=eureka-server server.port=18761 eureka.instance.hostname=peer1 eureka.client.serviceUrl.defaultZone=http://peer1:18761/eureka/
創建spring-cloud-config-server項目
項目結構如圖:
pom.xml核心代碼
<dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency> </dependencies>
SpringCloudConfigServerApplication.java
package com.cppba; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.config.server.EnableConfigServer; @SpringBootApplication @EnableConfigServer public class SpringCloudConfigServerApplication { public static void main(String[] args) { SpringApplication.run(SpringCloudConfigServerApplication.class, args); } }
application.properties
這個根據自己實際的git項目修改配置
server.port=8888 spring.application.name=config-server spring.cloud.config.server.git.uri=https://github.com/bigbeef/cppba-config spring.cloud.config.label=master # spring.cloud.config.server.git.username= # spring.cloud.config.server.git.password= spring.cloud.config.server.git.searchPaths=\ cppba-spring-cloud/*,\ cppba-spring-cloud/eureka-client/*
spring.cloud.config.server.git.uri:配置git倉庫地址
spring.cloud.config.server.git.searchPaths:配置倉庫路徑,以逗號隔開
spring.cloud.config.label:配置倉庫的分支
spring.cloud.config.server.git.username:訪問git倉庫的用戶名
spring.cloud.config.server.git.password:訪問git倉庫的用戶密碼
啟動項目
訪問地址:http://127.0.0.1:8888
http請求地址和資源文件映射如下:
/{application}/{profile}[/{label}]
/{application}-{profile}.yml
/{label}/{application}-{profile}.yml
/{application}-{profile}.properties
/{label}/{application}-{profile}.properties
根據我們自己的配置,我們可以這樣訪問:http://127.0.0.1:8888/eureka-server/default/master
application -> eureka-server (應用名)
profile -> default (啟用的配置,通常是后綴,下面解釋)
label -> master (分支)
訪問到的結果就是:
profile比較重要,可以理解成讀取哪些配置文件,假如我不止一個配置文件,可能會有:
eureka-server.properties(這個是通用配置文件,默認都會加載),
eureka-server-mysql.properties,
eureka-server-oracle.properties,
eureka-server-jpa.properties,
eureka-server-mysql.properties......
我們可能會選擇性的加載其中的部分properties配置文件,那我們可以這樣寫:http://127.0.0.1:8888/eureka-server/default,mysql,jpa/master
到此,我們的spring-cloud-config-server就簡單搭起來
關于“spring-cloud中如何創建配置項目”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。