spring 对象包含yml中要pojo的其他对象

ubof19bj  于 2022-10-30  发布在  Spring
关注(0)|答案(1)|浏览(103)

我有一个yml文件,其中我定义了所有对象,在这个虚拟示例中,我有这个java对象:
第一个
还有这个yml文件,**重要:**这个文件不起作用,它很好地代表了我想做的事情:

products:
    bottle:
      id: 1
      name: bottle
    apple:
      id: 2
      name: apple

departaments:
    departament_one:
        product: apple
        name: departamentName
    departament_two:
        product: bottle
        name: departamentName2

我希望当我在configurationPropertiesClass中读取yml文件时,我希望有一个部门列表,并且每个部门都有在yml文件中声明的产品。
谢谢你的时间,对不起,我的英语,它不是我的母语。

xvw2m8pv

xvw2m8pv1#

您应该改为重复该对象:

products:
    product:
      id: 1
      name: bottle
    product:
      id: 2
      name: apple

departaments:
    departament:
        product: apple
        name: departamentName
    departament:
        product: bottle
        name: departamentName2

相关问题