有没有一种方法可以使YAML文件在不使用Spring的情况下处理多个配置文件

时间:2019-11-18 07:17:05

标签: yaml

我要求能够覆盖单个YAML文件中每个客户的配置。

类似的东西:

maxThreads:10
sortBy:name

customerOverrides:
- customerId: 1234
      sortBy:id
- customerId: 6789
      sortBy:created_date  

期望: 如果有3个ID为1234、6789和0987的客户,则:

Customer with id 0987:
*maxThreads - 10,
sortBy - name*

Customer with id 1234:
*maxThreads - 10,
sortBy - id*

Customer with id 6789:
*maxThreads - 10,
sortBy - created_date*

0 个答案:

没有答案