从零开始 Spring Cloud 4:Nacos
图源:laiketui.com
Nacos 是 Alibaba 研发的用于 Spring Cloud Alibaba 的服务注册中心组件,符合 Spring Cloud 官方标准,同样被 Spring Cloud 官方接纳,所以我们可以在 Spring Cloud 中用 Nacos 替换 Eureka 作为服务注册中心。
本文将演示如何用 Nacos 作为注册中心。
本文的示例项目基于上篇文章。
基础
安装 & 启动
Nacos 服务端的安装和启动可以参考这篇文章。
本篇文章使用的 Nacos 版本是1.4.1。
依赖
在根项目中添加 Spring Cloud Alibaba 相关依赖:
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>2.2.5.RELEASE</version>
<type>pom</type>
<scope>import</scope>