https://www.bilibili.com/video/BV18E411x7eT?p=95
P95_Cloud Alibaba简介 16:26
P96_Nacos简介和下载 07:16
P97_Nacos安装 03:03
P98_Nacos之服务提供者注册 17:27
P99_Nacos之服务消费者注册和负载 10:11
P100_Nacos服务注册中心对比提升 06:52
P101_Nacos之服务配置中心 20:02
P102_Nacos之命名空间分组和DataID三者关系 06:06
P103_Nacos之DataID配置 06:30
P104_Nacos之Group分组方案 04:49
P105_Nacos之Namespace空间方案 09:24
-----后面这几个使用nginx 在linux上面配置Nacos集群,暂时不学习,前置学习条件是 MYSQL + NGINX + VM ------------------
P106_Nacos集群_架构说明 11:28
P107_Nacos持久化切换配置 08:45
P108_Nacos之Linux版本安装 05:16
P109_Nacos集群配置(上) 19:34
P110_Nacos集群配置(下) 12:25
P95_Cloud Alibaba简介
Spring Cloud Netflix Projects Entering Maintenance Mode
https://spring.io/blog/2018/12/12/spring-cloud-greenwich-rc1-available-now
springcloud 无法神兽
eureka ---- 服务注册于发现 (Consul,zookeeper 替换)
ribbon — 服务调用
fegin — 服务调用
zuul — 服务网关 (gateway替换)
config — 服务配置
https://spring.io/projects/spring-cloud
2018.10.31 SpringCloud Alibaba 正式入驻Spring Cloud 官方孵化器,并在maven仓库发版。
springCloud git地址
https://github.com/alibaba/spring-cloud-alibaba/blob/master/README-zh.md
最新版本是 2.2.3.RELEASE , 周阳讲解用的是 2.1.0.RELEASE
P96_Nacos简介和下载
https://www.bilibili.com/video/BV18E411x7eT?p=96
Nacos: 前四个字母为Nameing和Configuration的前两个字母,最后的s为Service
Nacos就是注册中心+配置中心的组合
Nacos=Eureka+Config+Bus
最新版 1.4.0 版本的
周阳使用的是 1.1.4 版本的
Nacos 下载地址
https://github.com/alibaba/nacos
Nacos 官网
https://nacos.io/zh-cn/
P97_Nacos安装
https://github.com/alibaba/nacos/releases/tag/1.1.4
http://localhost:8848/nacos nacos nacos
P98_Nacos之服务提供者注册
周阳用的是 9001 9002
我的9001 端口是 系统端口服务占用了 ,写了9001 9002 9003 三个Module, 使用的时候用 9002 9003
虚拟映射一个
-DServer.port=9003
P99_Nacos之服务消费者注册和负载
http://localhost:83/consumer/payment/nacos/83
P100_Nacos服务注册中心对比提升
nacos 服务模式 AP CP 之间 切换
curl -X PUT ‘$NACOS_SERVER:8848/nacos/v1/ns/operator/switches?entry=serverMode&value=CP’
P101_Nacos之服务配置中心
P102_Nacos之命名空间分组和DataID三者关系
Namespace=public,
Group =DEFAULT_GROUP,
Service = 自定义
Cluster = Default
P103_Nacos之DataID配置
nacos-config-client-dev.yaml
config:
info: from nacos config center, nacos-config-client-dev.yaml ,version =5
nacos-config-client-test.yaml
config:
info: from nacos config center, nacos-config-client-test.yaml ,version =1
P104_Nacos之Group分组方案
nacos-config-client-info.yaml
DEV_GROUP
config:
info: nacos-config-client-info.yaml,DEV_GROUP version=1
nacos-config-client-info.yaml
TEST_GROUP
config:
info: nacos-config-client-info.yaml,TEST_GROUP version=2
P105_Nacos之Namespace空间方案
nacos-config-client-dev.yaml
DEV_GROUP
config:
info: nacos-config-client-dev.yaml,DEV_GROUP version=2