发布时间:2024-01-11 14:30
Nacos介绍请参考:https://nacos.io/zh-cn/docs/what-is-nacos.html
下载:https://github.com/alibaba/nacos/releases?page=3
安装方法:https://nacos.io/zh-cn/docs/quick-start.html
切换到bin目录,在命令窗口输入命令:sh startup.sh -m standalone
成功启动获取访问地址
http://localhost:8848/nacos/index.html
成功访问,初始用户名 / 密码:nacos / nacos
为了使教程更加简单易懂,我们将微服务缩减到2个,分别是用户中心(user-center)和内容中心(content-center),content-center(内容中心微服务)需要向user-center(用户中心微服务)发送请求获取用户的微信昵称,也就是说user-center是消息提供者,content-center是消息消费者,业务非常简单清晰。
user-center(用户中心微服务)和content-center(内容中心微服务)通过Ribbon(下一章内容:SpringCloud第06讲:使用Ribbon实现负载均衡)向NacosServer(服务发现组件)注册服务,由NacosServer进行管理,以下是架构演进图:
特别声明:本系列教程(SpringCloudAlibaba)参考自慕课网大目老师提供的网上视频课程,有需要的同学可以自行搜索学习