我正在使用yamlbeans将yaml文件反序列化为Java对象。只要我只有一个类,这个工作正常。问题是当我想嵌套一个字段时,我被迫在yaml描述中指定嵌套类。
单课示例:
爪哇:
public class MessageField {
public String name;
public String type;
public int length;
public String comment;
}
YAML:
name: field1
type: int
length: 4
comment: first field
---
name: field2
type: string
length: 16
comment: second field
---
多个类(需要在yaml文件中使用!com.mylib.VariableField)
爪哇:
public class MessageField {
public String name;
public String type;
public int length;
public String comment;
public List<VariableField> variableFields;
}
public class VariableField extends MessageField{
public int id;
}
YAML:
name: field3
type: short
length: 2
comment:
variableFields:
- !com.mylib.VariableField
id: 1
name: nestedField 1
type: string
length: -1
comment:
---
yaml文档页面描述了如何通过在读取类时指定类型来反序列化类,这就是我为顶级类所做的事情:
YamlReader reader = new YamlReader(new FileReader("sample.yml"));
MessageField mf = reader.read(MessageField.class);
这正确地解析了顶级类的字段,但是不允许我为我的嵌套类避免使用!com.mylib.VariableField标识符。我试图弄清楚是否有任何方法可以更改Java代码,以便yaml文件不需要知道类名。
答案 0 :(得分:8)
我相信你要找的是
reader.getConfig().setPropertyElementType(MessageField.class, "variableFields", VariableField.class);
设置基于集合的字段的默认元素类型。同样,setPropertyDefaultType
方法可用于指定字段本身的默认类型。
使用为YamlReader指定的默认字段/元素类型,您不再需要在yaml文件中包含类名(尽管您包含的任何类型名称都将覆盖这些默认值)。此外,如果为YamlWriter定义了默认类型,则不会将多余的类名写入yaml文件。