nacos介绍
nacos是阿里巴巴提供的SpringCloud的一个组件,算是eureka的替代品。
nacos启动
安装过程这里不再赘述,相关安装或启动的问题可以见我的另一篇博客:
http://t.csdn.cn/tcQ76
单价模式启动命令:进入bin目录,终端输入
.\startup.cmd -m standalone
nacos服务注册
修改父工程pom文件
<properties><maven.compiler.source>8</maven.compiler.source><maven.compiler.target>8</maven.compiler.target><spring-cloud.version>Hoxton.SR10</spring-cloud.version><spring-cloud-alibaba.version>2.2.9.RELEASE</spring-cloud-alibaba.version></properties>
<dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-alibaba-dependencies</artifactId><version>${spring-cloud-alibaba.version}</version><type>pom</type><scope>import</scope></dependency>
nacos服务分级存储模型
![在这里插入图片描述](https://img-blog.csdnimg.cn/b120855f19ab4b35bdb7c57b112c594f.png)