nacos报Ignore the empty nacos configuration and get it based on dataId警告
在基于Spring Cloud中使用Nacos时,当启动项目或更新配置内容时,会出现以下警告信息:
Ignore the empty nacos configuration and get it based on dataId[order-server.yml] & group[business-app] 2020-09-16 14:05:07.053 WARN 27342 --- [ main] c.a.c.n.c.NacosPropertySourceBuilder : Ignore the empty nacos configuration and get it based on dataId[order-server-dev.yml] & group[business-app] 2020-09-16 14:05:07.053 INFO 27342 --- [ main] b.c.PropertySourceBootstrapConfiguration : Located property source: CompositePropertySource {name="NACOS", propertySources=[NacosPropertySource {name="order-server-dev.yml,business-app"}, NacosPropertySource {name="order-server.yml,business-app"}, NacosPropertySource {name="order-server,business-app"}]} 2020-09-16 14:05:07.077 INFO 27342 --- [ main] com.order.OrderApplication : The following profiles are active: dev
场景一
其实,出现这个异常信息并没有太大问题,因为Spring Cloud在加载Nacos的配置文件时会轮训三个dataID:
格式一:xxx_config 格式二:xxx_config.yaml 格式三:xxx_config-dev.yaml
格式一就是文件名:xxx_config;
格式二是:文件名+yaml后缀;
格式三为:文件名+profile + 后缀。中间用“-”分割。
所以说,只要有一个配置文件的DataID符合上面的条件,其他的不符合,单纯打印出来警告日志也是没关系的。
场景二
场景一种是可以正常启动,只是对于代码或日志有洁癖的朋友进行的原因解释。当然,在某些情况下可能真的是使用不当导致的。
比如,项目中未配置namespace命名空间的id,配置名称就无法读取。从而导致上述警告信息。
在nacos管理页面,命名空间列表可以查询到id,对应配置如下:
spring: application: name: nacos-config cloud: nacos: config: server-addr: 192.168.31.231:8848 file-extension: properties namespace: a5500b50-917d-462b-ab18-3ca389de108b # prod的namespace id group: YCL
关注公众号:程序新视界,一个让你软实力、硬技术同步提升的平台
除非注明,否则均为程序新视界原创文章,转载必须以链接形式标明本文链接