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

网友投稿 686 2022-12-21


详解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 mainimporhttp://t ( "encoding/json"

"fmt"

"log"

"net/http")func main() {

http.HandleFunc("/sidecar", sidecar)

http.HandleFunc("/heath", health) log.Fatal(http.ListenAndServe(":808MvkTrdj9", 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)

}

构建 sidercar 应用

增加 sidecar 依赖

com.alibaba.cloud

spring-cloud-starter-alibaba-sidecar

2.1.1.RELEASE

配置 application.yml

server:

port: 8088spring:

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: 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


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java使用I/O流读取文件内容的方法详解
下一篇:java面向对象的三大特性之一继承用法实例分析
相关文章

 发表评论

暂时没有评论,来抢沙发吧~