SpringCloud(八):sidecar异构微服务 置顶!
0、理解
通过sidecar将异构平台的微服务注册到Eureka;让其和SpringCloud的生态空间连在一起;
1、使用
pom.xml`
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-netflix-sidecar</artifactId>
</dependency>
application.yml
spring:
application:
name: microservice-sidecar
server:
port: 8070
eureka:
client:
service-url:
defaultZone: http://localhost:8761/eureka
instance:
prefer-ip-address: true
sidecar:
port: 8060
health-uri: http://localhost:8060/health.json
启动类SidecarApplication.java
@SpringBootApplication
//注册Sidecar;@EnableSidecar是一个组合注解
@EnableSidecar
public class SidecarApplication {
public static void main(String[] args) {
System.out.println("Hello Zuul!");
SpringApplication.run(SidecarApplication.class, args);
}
}
注意
- 1、
当异构微服务和eureka不运行在同一个hostname上时,我们需要配置
${eureka.instance.hostName}
- 2、每一个异构微服务节点就需要一个sidecar,当需要异构的微服务很多时,就很麻烦了;且sidecar本身对业务没什么作用,仅仅做一个‘汇总’。
标题:SpringCloud(八):sidecar异构微服务
作者:mmzsblog
地址:https://www.mmzsblog.cn/articles/2019/08/06/1565078073512.html
如未加特殊说明,文章均为原创,转载必须注明出处。均采用CC BY-SA 4.0 协议!
本网站发布的内容(图片、视频和文字)以原创、转载和分享网络内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。若本站转载文章遗漏了原文链接,请及时告知,我们将做删除处理!文章观点不代表本网站立场,如需处理请联系首页客服。• 网站转载须在文章起始位置标注作者及原文连接,否则保留追究法律责任的权利。
• 公众号转载请联系网站首页的微信号申请白名单!