douyouming9180 2018-12-05 14:06
浏览 154
已采纳

从YAML配置文件仅加载一节

I have multiple components that each of them needs to load specific definitions for it to run, I want to make one big YAML file divided into sections, that each section will belong to a different component.

So instead of having 4 config files for 4 components I'll have one big config file that divided into sections.

Now I want to load on each component just the relvant section from the yaml config file.

Can I do it? and how?

Update:

Both answers have satisfied me (embedded YAML files in one YAML file and the other answer was to unmarshal the JSON to an object that contains only the relevant section I'm interstring in).

  • 写回答

1条回答 默认 最新

  • dongxie7683 2018-12-05 14:30
    关注

    The YAML specification allows to have multiple YAML documents in one file by delimiting them with ---: http://yaml.org/spec/1.2/spec.html#id2760395

    You would have to check how the library you're utilizing handles this.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?