1 首先会根据spring.cloud.nacos.config.namespace定义的命名空间下找配置信息,并且会加载指定的data-id,goup的配置信息
spring: cloud: nacos: config: namespace: bed108f2-2972-4ade-a27b-b53e4d99b66a server-addr: 192.168.2.107:8848 file-extension: yaml shared-dataids: devops-share-dev.yaml refreshable-dataids: devops-share-dev.yaml ext-config: - data-id: devops-share-dev.yaml group: DEVOPS_GROUP refresh: true
2 其次就是项目名和spring.profile.active这个来个属性组成的配置文件进行加载
如下的属性配置,项目就会加载bed108f2-2972-4ade-a27b-b53e4d99b66a命名空间下的legal-material-test.yaml文件
spring: application: name: legal-material http: encoding: charset: UTF-8 enabled: true force: true profiles: active: test