Ниже приведена конфигурация yml для объекта person
questionPerson:
name: "John"
place: "Delhi"
address:
home: "Delhi"
, а сопоставление введенного поля равно
@Property(name = "questionPerson")
@MapFormat(keyFormat = StringConvention.RAW)
private Person productQuestions;
Однако приведенное ниже сопоставление List отлично вводится.
questionsList:
- name: "John"
place: "Delhi"
address:
home: "Delhi"
- name: "Marley"
place: "Noida"
address:
home: "Noida"
@Property(name = "questionsList")
@MapFormat(keyFormat = StringConvention.RAW)
private List<Person> productQuestions;