spring cloud 服務搭建(1)

mr攻城獅發表於2018-10-22

簡述

SpringCloud是一個微服務治理框架,基於SpringBoot,在專案構建選擇maven;

環境

  • Intellij Idea version : 2018.1
  • JavaSDK version : 1.8
  • Maven version : 3.5.0
  • SpringCloud version : Finchley.SR1
  • SpringBoot version : 2.0.6.RELEASE

建立專案

enter image description here

enter image description here

enter image description here

enter image description here

修改專案結構

由於是父子專案結構,cloud專案包含多個子boot專案,所以此處刪除src目錄

建立子模組 maven子工程

點選專案右鍵 enter image description here

建立子工程 就如建立spring boot工程一樣,填寫GroupId以及ArtifactId,以及版本號等

enter image description here

  • 服務註冊中心:提供服務註冊和發現

    主要配置 在啟動類上增加 @EnableEurekaServer

配置檔案

  • application.yml

    server: port: 1861

  • bootstrap.yml

    enter image description here

相關文章