1. 建立SpringCloud專案,引入對應的Spring-config-server對應的jar
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency> <dependency> <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit</artifactId> <version>3.7.1.201504261725-r</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-actuator</artifactId> </dependency>
2. 建立一個Spring boot啟動類:
新增如下兩個註解
@EnableConfigServer
@SpringBootApplication
package cn.lonecloud.config.server; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.config.server.EnableConfigServer; /** * @author lonecloud * @version v1.0 * @Package cn.lonecloud.config * @Description: TODO * @date 2018/6/12下午7:58 */ @EnableConfigServer @SpringBootApplication public class ConfigServerApplication { public static void main(String[] args) { SpringApplication.run(ConfigServerApplication.class,args); } }
3. 新增application.yml
由於連線git分兩種:一種為共有沒有訪問許可權密碼的,一種使用賬號密碼登入,一種採用ssh登入,
(一).完全公開,無密碼訪問配置:
server: port: 3344 #設定埠 spring: application: name: config-server #設定名稱 cloud: config: server: git: uri: git@gitee.com:lonecloud/xxx.git #設定git倉庫地址 force-pull: true #設定強行pull拉取
(二).採用賬號密碼訪問登入
server: port: 3344 #設定埠 spring: application: name: config-server #設定名稱 cloud: config: server: git: uri: git@gitee.com:lonecloud/xxx.git #設定git倉庫地址 force-pull: true #設定強行pull拉取 username: lonecloud password: password #填寫你自己密碼
(三).採用SSH無密碼登入,最坑的則是第三個,如果您的主機配置了ssh則直接採用(一)方案即可,如果沒有配置則需要生成對應的ssh key,將其複製到此處,既可訪問
server: port: 3344 spring: application: name: config-server cloud: config: server: git: uri: git@gitee.com:lonecloud/xxx.git ignoreLocalSshSettings: true force-pull: true privateKey: | #這個地方複製你的RSA密碼,記得這裡有個| 別忘了 -----BEGIN RSA PRIVATE KEY----- -----END RSA PRIVATE KEY-----
4. 直接訪問該地址,由於我的配置地址為3344埠,所以我的地址為http://localhost:3344/application-dev.yml
後面的引數為{你的git上的檔名}-{profile}.yml
profile,這就是你在你的配置檔案中設定的配置檔案分類,用於分別你的事dev環境還是test環境
有問題歡迎加入群:416052025。交流