Java b2b2c電子商務 SpringCloud分散式微服務-config的簡單配置shh方式

gung123發表於2020-01-10

1、建立專案需要新增的依賴:

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

2、yml檔案配置:

server:
port: 8888
spring:
application:
name: cloud-server
cloud:
config:
server:
git:
uri: "git@gitlab.guangbao-uni.com:wangchaojie/SpringCloudConfig.git"
search-paths:respo

3、gitlab的ssh配置:

在~/.ssh目錄下,生成公鑰和金鑰,將金鑰設定到gitlab伺服器,在config檔案裡設定一下內容

具體引數根據實際情況修改,瞭解springcloud架構可以加求求:三五三六二四七二五九.


4、git上SpringCloudConfig專案中,在respo目錄下有名為config-client-dev.properties的配置檔案.



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69952307/viewspace-2672817/,如需轉載,請註明出處,否則將追究法律責任。

相關文章