认识spring cluod服务
spring cluod与spring boot版本兼容关系
1、注册RestTemplate对象
2、服务远程调用RestTemplate
在Nacos的GitHub页面,提供有下载链接,可以下载编译好的Nacos服务端或者源代码:
GitHub主页:https://github.com/alibaba/nacos
GitHub的Release下载页:https://github.com/alibaba/nacos/releases
在nacos/bin目录中,输入命令启动Nacos:
sh startup.sh -m standalone
父工程:
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>2.2.5.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
客户端:
<!-- nacos客户端依赖包 -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
优先访问哪一个集群
实际部署中会出现这样的场景:
nacos提供了权重配置来控制访问频率,权重越大则访问频率越高
在nacos服务里面新建命名空间生成命名空间ID
在服务中设置命名空间ID:spring-cloud-nacos-discovery-namespace
临时实例
和非临时实例
)一.Feign远程调用:https://blog.csdn.net/m0_66570338/article/details/128744333
二.Eureka注册中心:https://blog.csdn.net/m0_66570338/article/details/128747002
三.Nacos注册中心:https://blog.csdn.net/m0_66570338/article/details/128757552
四.Nacos配置管理:https://blog.csdn.net/m0_66570338/article/details/128764602
五.Gateway统一网关:https://blog.csdn.net/m0_66570338/article/details/128769153
六.Docker容器化:https://blog.csdn.net/m0_66570338/article/details/128786952
七.RabbitMQ&SpringAMQP消息队列:https://blog.csdn.net/m0_66570338/article/details/128808499