首页 > 科技 > Spring Cloud Alibaba Sidecar 多语言微服务异构

Spring Cloud Alibaba Sidecar 多语言微服务异构

Spring Cloud Alibaba Sidecar 介绍

自 Spring Cloud Alibaba 2.1.1 版本后增加了 spring-cloud-alibaba-sidecar 模块作为作为一个代理的服务来间接性的让其他语言可以使用spring cloud alibaba等相关组件。通过与网关的来进行路由的映射,从而可以做到服务的获取,然后可以使用Ribbon间接性调用。

如上图, Spring Cloud 应用 请求 sidercar 然后转发给其他语言的模块,优势是对于异构服务代码 零侵入,不需要直接根据 nacos 或其他注册中心 api 注册等

使用入门

构建其他语言接口服务

  • 基于go 写个简单的服务接口

http://127.0.0.1:8089/sidecar

package main

import (
t"encoding/json"
t"fmt"
t"log"
t"net/http"
)

func main() {
thttp.HandleFunc("/sidecar", sidecar)
thttp.HandleFunc("/heath", health)
tlog.Fatal(http.ListenAndServe(":8089", nil))
}
func sidecar(w http.ResponseWriter, r *http.Request) {
t_, _ = fmt.Fprintf(w, "hello spring cloud alibaba sidecar")
}

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

构建 sidercar 应用

  • 增加 sidecar 依赖

tcom.alibaba.cloud
tspring-cloud-starter-alibaba-sidecar
t2.1.1.RELEASE

  • 配置 application.yml
server:
port: 8088
spring:
cloud:
nacos:
discovery:
server-addr: localhost:8848
application:
name: go-provider

# 配置异构服务
sidecar:
ip: localhost
port: 8089
health-check-url: http://localhost:8089/health

构建 nacos consumer应用

  • application.yml
server:
port: 8087
spring:
cloud:
nacos:
discovery:
server-addr: localhost:8848
application:
name: nacos-consumer
  • consumer 逻辑
@RestController
@EnableDiscoveryClient
@SpringBootApplication
public 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

获取资料:

最后给大家分享一份学习资料,里面包括:(BATJ面试资料、高可用、高并发、高性能及分布式、Jvm性能调优、Spring源码,MyBatis,Netty,Redis,Kafka,Mysql,Zookeeper,Tomcat,Docker,Dubbo,Nginx等多个知识点的架构资料)和Java进阶学习路线图。

戳这里即可领取-->正在跳转

本文来自投稿,不代表本人立场,如若转载,请注明出处:http://www.souzhinan.com/kj/266209.html