用来干嘛?
Nacos作为配置中心-在微服务里面可以读取在Nacos配置的东西
还有分组功能
怎么做的?
建立一个module:cloudalibaba-config-nacos-client3377
然后启动Nacos
在它的页面
s
p
r
i
n
g
.
a
p
p
l
i
c
a
t
i
o
n
.
n
a
m
e
−
{spring.application.name}-
spring.application.name−{spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
测试:
http://localhost:3377/config/info
下面展示分组,增加了一个DEV_GROUP
加一个名字一样但是组不一样的,
这测试就是:
http://localhost:3377/config/info
增加命名空间
测试:
http://localhost:3377/config/info
我之前在yaml,格式不对都报错了!!!
代码
https://github.com/13thm/study_springcloud/tree/main/days15_Nacos作为配置中心-基础配置/