标签: parsing yaml snakeyaml
我正在使用SnakeYaml来解析yaml文件,无论如何都要忽略yaml文件中的特性?
答案 0 :(得分:16)
我找到了它:)
Representer representer = new Representer(); representer.getPropertyUtils().setSkipMissingProperties(true); Yaml yaml = new Yaml(new Constructor(MyClass.class),representer);