您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關(guān)springcloud4 配置中心是怎樣的,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
備注:遠程倉庫的配置代碼,和客戶端或者服務(wù)端的基本一樣。
1.1 主方法
@SpringBootApplication @EnableEurekaClient //加入注冊中心 @EnableConfigServer //啟用配置服務(wù)端 public class UserProviderApplication_6666 { public static void main(String[] args) { SpringApplication.run(UserProviderApplication_6666.class, args); } }
1.2 application配置
server: #配置中心的端口號 port: 6666 eureka: client: service-url: defaultZone: http://peer1000:1000/eureka/,http://peer1001:1001/eureka/ #可以使用ip注冊 instance: prefer-ip-address: truespring: application: name: config-server cloud: config: server: git: #是在倉庫的配置中心地址 uri: https://gitee.com/ccjdk/springcloud-demo.git username: ...... password: ......
1.3 pom
<!--springboot支持--><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId></dependency><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId></dependency><!--eureka客戶端--><dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId></dependency><!--配置中心支持--><dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId></dependency>
2.1 基于springcloud3中的 客戶端,
在pom中追加上
<!--開啟加載配置中心--><dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId></dependency>
2.2 bootstrap.yml配置
spring: cloud: config: #name+profile的總名字是在碼云或者github上的名字application-getting-test name: application-getting #github上面名稱 profile: test #環(huán)境 #master是在倉庫上的分支名字,是默認的一個 label: master #分支 uri: http://localhost:6666 #配置中心服務(wù)器 #當(dāng)集群的時候,也可以用名字替代配置中心服務(wù)器的uri discovery: # enabled: true # service-id: CONFIG-SERVER #配置中心在注冊中心的名字
eureka: client: service-url: defaultZone: http://peer1000:1000/eureka/,http://peer1001:1001/eureka/ instance: prefer-ip-address: true #顯示客戶端真實ip
2.3 運行主方法,端口號就變成了遠程倉庫中的端口號
以上就是springcloud4 配置中心是怎樣的,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。