使用SnakeYAML的TypeDescription,我可以使用以下方法添加有关列表和地图的类型信息:

TypeDescription td = new TypeDescription(MyBean.class, "!mybean");
td.putMapPropertyType("mymap", String.class, MyOtherBean.class);
td.putListPropertyType("mylist", MyOtherBean.class);


这样,我可以使用MyOtherBean实例填充Collection,而不必依赖任何其他标签:

---
!mybean
mymap:
  foobar: # will map to an instance of MyOtherBean
    otherbeanprop1: foo
    otherbeanprop2: bar
mylist: # will contain instances of MyOtherBean
  - otherbeanprop1: foo
    otherbeanprop2: bar


有什么简单的方法可以执行以下操作:

td.putPropertyType("myotherbean", MyOtherBean.class);


以便用myotherbean的单个实例填充MyBean中的MyOtherBean属性?我想避免的事情:


在yaml文件中放置其他标签(例如!myotherbean
从Map加载其他bean属性并自己构造bean


我已经玩过这个了,我想我需要创建一个这样的自定义构造函数(改编自SnakeYAML文档):

class SelectiveConstructor extends Constructor {
    public SelectiveConstructor() {
        // define a custom way to create a mapping node
        yamlClassConstructors.put(NodeId.mapping, new ConstructMapping() {
            @Override
            protected Object constructJavaBean2ndStep(MappingNode node, Object object) {
                Class type = node.getType();
                if (type.equals(MyBean.class)) {
                    // something
                    if (propertyname.equals("myotherbean")) {
                        // something
                    }
                } else {
                    // redirect creation to Constructor
                    return super.constructJavaBean2ndStep(node, object);
                }

        }
    }
}


问题是我不太了解那里到底发生了什么。
请让我知道是否有更简单的方法。如果没有,如果您分享您的经验,我将不胜感激。

最佳答案

有一种优雅的方法可以做到这一点。
如果您不想对YAML内容做一些特殊的技巧,可以使用snakeYaml的以下两种方法来转储和加载yaml内容:

public String dumpAsMap(Object data)              // dump method
public <T> T loadAs(Reader io, Class<T> type)     // load method


在您的情况下,

转储:

MyBean bean = new MyBean();
// init bean...
String yamlContent = yaml.dumpAsMap(bean);


负载:

FileReader reader = new FileReader(filename);
MyBean bean = yaml.loadAs(reader, MyBean.class);


当然,您应该实现类的getter和setter。有关详细信息,您可以在此处查看example

10-04 21:08