感謝上篇博文大佬帶領走進springcloud世界, 本博文主要目的爲記錄本身學習springcloud的點點滴滴, 給本身的知識進行整理, 若是能幫助更多的小夥幫那就更好了.web
ps: 本文主要做爲備忘及快速搭建springcloud之用, 只記錄主要步驟. 原文講述更加細緻, 想深刻學習的同窗推薦點擊上方鏈接學習.spring
操做系統: Windows 10springboot
IDE: IntelliJ IDEA 2018.3.6服務器
JAVA: JDK 1.8.Xapp
Meave: 3.6.0微服務
SpringBoot: 2.1.7學習
建立springboot工程測試
依然選擇springboot工程fetch
選擇eureka服務器網站
導包, 開啓服務管理器
爲eureka註冊中心添加註解開啓服務
配置eureka註冊中心配置文件
server: # 配置服務端口 port: 8081 eureka: client: service-url: # 配置eureka服務器地址 defaultZone: http://127.0.0.1:8081/eureka #是否須要將本身註冊到註冊中心(註冊中心集羣須要設置爲true) register-with-eureka: false #是否須要搜索服務信息 由於本身是註冊中心因此爲false fetch-registry: false
注意縮進, 由於yml
使用縮進來區分不一樣字段的.
運行ServiceEurekaApplication文件啓動項目, 訪問註冊中心
建立一個springboot模塊
起個名字
選擇web
選擇客戶模塊
路由設置
配置微服務的入口文件 @EnableEurekaClient
配置application.yml
service-a
server: # 服務端口號 port: 8082 spring: application: # 服務名稱 - 服務之間使用名稱進行通信 name: service-objcat-a eureka: client: service-url: # 填寫註冊中心服務器地址 defaultZone: http://localhost:8081/eureka # 是否須要將本身註冊到註冊中心 register-with-eureka: true # 是否須要搜索服務信息 fetch-registry: true instance: # 使用ip地址註冊到註冊中心 prefer-ip-address: true # 註冊中心列表中顯示的狀態參數 instance-id: ${spring.cloud.client.ip-address}:${server.port}
service-b
server: # 服務端口號 port: 8083 spring: application: # 服務名稱 - 服務之間使用名稱進行通信 name: service-objcat-b eureka: client: service-url: # 填寫註冊中心服務器地址 defaultZone: http://localhost:8081/eureka # 是否須要將本身註冊到註冊中心 register-with-eureka: true # 是否須要搜索服務信息 fetch-registry: true instance: # 使用ip地址註冊到註冊中心 prefer-ip-address: true # 註冊中心列表中顯示的狀態參數 instance-id: ${spring.cloud.client.ip-address}:${server.port}
運行微服務
分別運行註冊中心及微服務模塊
出現端口號表示啓動成功
編寫測試接口
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class TestAController { @RequestMapping("testA") public String TestAController(){ return "Hello,SpringCloud for TestA"; } }
重啓服務
訪問下面地址
訪問成功
使用服務b調用服務a的接口
這時咱們就須要用到eurka(註冊中心)
和feign
客戶端了
首先咱們在service-b中建立interface
在微服務b中, 建立一個ServiceAFeignClient接口
import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.RequestMapping; // 填入註冊中心中的應用名, 也就是要調用的微服務的應用名 // 在eureka頁面中能夠找到 @FeignClient("SERVICE-OBJCAT-A") public interface ServiceAFeignClient { @RequestMapping("testA") public String TestAController(); }
應用名能夠在eureka中找到
http://localhost:8081
在服務b中添加個控制器
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; import org.springframework.cloud.openfeign.EnableFeignClients; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController // 添加註解聲明是註冊中心客戶端 @EnableEurekaClient // 實現不一樣子服務調用 @EnableFeignClients public class TestBController { @Autowired private ServiceAFeignClient serviceAFeignClient; @RequestMapping("call") public String call(){ String result = serviceAFeignClient.TestAController(); return "b to a 訪問結果 ---" + result; } }
解決@Autowired實例報錯
從新運行服務b 在網站上訪問試試吧
PS: 在springcloud中一個子服務調用另外一個子服務默認超時時間是1s, 也就是說要是被調用的子服務返回超過一秒就會出現錯誤, 針對此問題須要修改調用服務的yml文件.
舉例: 在本案例中, service-a是被調用者, service-b是調用者, 則在service-b的yml文件中加入
ribbon: #創建鏈接超時時間 ReadTimeout: 5000 #讀取資源超時間 ConnectTimeout: 5000
注意首行縮進, service-b完整配置以下
server: # 服務端口號 port: 8083 spring: application: # 服務名稱 - 服務之間使用名稱進行通信 name: service-objcat-b eureka: client: service-url: # 填寫註冊中心服務器地址 defaultZone: http://localhost:8081/eureka # 是否須要將本身註冊到註冊中心 register-with-eureka: true # 是否須要搜索服務信息 fetch-registry: true instance: # 使用ip地址註冊到註冊中心 prefer-ip-address: true # 註冊中心列表中顯示的狀態參數 instance-id: ${spring.cloud.client.ip-address}:${server.port} ribbon: #創建鏈接超時時間 ReadTimeout: 5000 #讀取資源超時間 ConnectTimeout: 5000