溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring Cloud Alibaba Sidecar多語言微服務異構(gòu)的示例分析

發(fā)布時間:2021-08-21 19:56:57 來源:億速云 閱讀:779 作者:小新 欄目:編程語言

這篇文章主要為大家展示了“Spring Cloud Alibaba Sidecar多語言微服務異構(gòu)的示例分析”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學習一下“Spring Cloud Alibaba Sidecar多語言微服務異構(gòu)的示例分析”這篇文章吧。

自 Spring Cloud Alibaba 2.1.1 版本后增加了 spring-cloud-alibaba-sidecar 模塊作為作為一個代理的服務來間接性的讓其他語言可以使用spring cloud alibaba等相關(guān)組件。通過與網(wǎng)關(guān)的來進行路由的映射,從而可以做到服務的獲取,然后可以使用Ribbon間接性調(diào)用。

Spring Cloud Alibaba Sidecar多語言微服務異構(gòu)的示例分析

如上圖, Spring Cloud 應用 請求 sidercar 然后轉(zhuǎn)發(fā)給其他語言的模塊,優(yōu)勢是對于異構(gòu)服務代碼 零侵入,不需要直接根據(jù) nacos 或其他注冊中心 api 注冊等

使用入門

構(gòu)建其他語言接口服務

基于go 寫個簡單的服務接口

http://127.0.0.1:8089/sidecar

package mainimport (	"encoding/json"
"fmt"
"log"
"net/http")func main() {
http.HandleFunc("/sidecar", sidecar)
http.HandleFunc("/heath", health)	log.Fatal(http.ListenAndServe(":8089", nil))
}func sidecar(w http.ResponseWriter, r *http.Request) {
_, _ = fmt.Fprintf(w, "hello spring cloud alibaba sidecar")
}

func health(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
actuator := make(map[string]string)
actuator["status"] = "UP"
_ = json.NewEncoder(w).Encode(actuator)
}

構(gòu)建 sidercar 應用

增加 sidecar 依賴

<dependency>
<groupid>com.alibaba.cloud</groupid>
<artifactid>spring-cloud-starter-alibaba-sidecar</artifactid>
<version>2.1.1.RELEASE</version></dependency>

配置 application.yml

server:
 port: 8088spring:
 cloud:
  nacos:
   discovery:
    server-addr: localhost:8848
 application:
  name: go-provider# 配置異構(gòu)服務sidecar:
 ip: localhost
 port: 8089
 health-check-url: http://localhost:8089/health

構(gòu)建 nacos consumer應用

application.yml

server:
 port: 8087spring:
 cloud:
  nacos:
   discovery:
    server-addr: localhost:8848
 application:
  name: nacos-consumer

consumer 邏輯

@RestController@EnableDiscoveryClient@SpringBootApplicationpublic class NacosConsumerApplication {  public static void main(String[] args) {
    SpringApplication.run(NacosConsumerApplication.class, args);
  }  @Bean
  @LoadBalanced
  public RestTemplate restTemplate() {    return new RestTemplate();
  }  @Autowired
  private RestTemplate restTemplate;  @GetMapping("/test")  public String test() {    return restTemplate.getForObject("http://go-provider/sidecar", String.class);
  }

}

測試使用

訪問spring cloud consumer 應用

curl http://localhost:8087/test

輸出 go-provider應用

hello spring cloud alibaba sidecar

以上是“Spring Cloud Alibaba Sidecar多語言微服務異構(gòu)的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(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)容。

AI