spring:
application:
name: configdemo
cloud:
nacos:
config:
server-addr: localhost:8848
file-extension: yaml
profiles:
active: test #这里可以指定环境,比如dev、test、prod等
这样就可以切换不同的环境
就在后面不加-
spring:
application:
name: configdemo
cloud:
nacos:
config:
server-addr: localhost:8848
file-extension: yaml
shared-configs[0]: #共享配置
data-id: common.yaml #配置文件名
refresh: true #是否自动刷新
shared-configs[1]: #共享配置
data-id: common1.yaml #配置文件名
refresh: true #是否自动刷新
profiles:
active: test #这里可以指定环境,比如dev、test、prod等
使用
shared-configs[0]: #共享配置
data-id: common.yaml #配置文件名
refresh: true #是否自动刷新
使用
extension-config[0]: #共享配置
data-id: common.yaml #配置文件名
refresh: true #是否自动刷新