Nishant-Sehgal
Nishant-Sehgal
@kevin-mcgoldrick can you share more details on it
I also came across with the same scenario where i need to load configs from different files which have different path and different names. /app/global/global.yml /app/app1/common.yml /app/app1/tech.yml /app/app1/product.yml
@spencergibb is there any way to achieve this?
let me check for the same. Will revert Back. > @Nishant-sehgal did you try? > > ``` > spring.cloud.consul.config.name=mysql,rabbitmq,zipkin,${spring.application.name} > ``` @spring-issuemaster yes i tried with the below changes. spring.cloud.consul.config.name=a1,a2,a3,a4...
if my directory structure is this: /app/app1/props.yml config used: in this case all my properties are in single file and this file is quite huge. spring: cloud: consul: host: consul.mmt.mmt...
so if it is supported then i need to do something like. searchPaths: app/app1/,app/global/ and it can still have different file names in subdirectories? while reading we have to provide...
what would be the data-key to be provided as we need to provide the same while dealing with yaml files.Since file names would be different in this case. Or it...