gpt4 book ai didi

java - SnakeYAML:以不同的方式创建一些对象

转载 作者:行者123 更新时间:2023-12-02 12:52:34 28 4
gpt4 key购买 nike

我在程序中有以下无法更改的类结构:

class Node {
public String name;
}

class Nodes {
public List<Node> nodes;
}

class Master {
public Nodes nodes;
}

我可以使用以下 YAML 来初始化它:

master:
nodes:
nodes:
- name: test

SnakeYaml 是否有可能用某种自定义对象实例化逻辑省略第一个“节点:”,以便我的客户可以只使用以下 YAML?

master:
nodes:
- name: test

我尝试使用自定义构造函数实现,但没有成功:

class MyConstructor extends Constructor {
MyConstructor() {
yamlClassConstructors.put(NodeId.mapping, new NodesConstructor());
}

class NodesConstructor extends Constructor.ConstructMapping {
@Override
protected Object constructJavaBean2ndStep(MappingNode node, Object object) {
Class type = node.getType();

if (type.equals(Master.class)) {
Nodes nodes = new Nodes();
//FIXME: I don't want to construct the whole object tree here, I only want to fill the nodes
nodes.nodes = new ArrayList<>();
Master master = new Master();
master.nodes = nodes;
return master;
} else {
return super.constructJavaBean2ndStep(node, object);
}
}
}
}

最后,这就是我喜欢的工作:

class MyDsl {
public Master master;
}

public class SnakeYaml {
public static void main(String[] args) throws IOException {
// 1: this is working OK
Yaml yaml = new Yaml();
MyDsl myDsl = yaml.loadAs("master:\n nodes:\n nodes:\n - name: mystage", MyDsl.class);
if(!myDsl.master.nodes.nodes.get(0).name.equals("mystage")) {
throw new AssertionError("Failed with nested nodes");
}

// 2: this is how I need it
Yaml yaml2 = new Yaml(new MyConstructor());
MyDsl myDsl2 = yaml2.loadAs("master:\n nodes:\n - name: mystage", MyDsl.class);
if(!myDsl2.master.nodes.nodes.get(0).name.equals("mystage")) {
throw new AssertionError("Failed with leaving out nodes");
}
}
}

有什么想法吗?提前致谢。

最佳答案

我最终解决这个问题的方法是手动转换底层映射,将其转储到字符串中,然后使用我的 DSL 包装器类再次加载它:

Yaml yaml2 = new Yaml();
Map map = yaml2.loadAs("master:\n nodes:\n - name: mystage", Map.class);
Map master = (Map) map.get("master");
List nodes = (List) master.get("nodes");
Map newNodes = new HashMap();
newNodes.put("nodes", nodes);
master.put("nodes", newNodes);
String modifiedDsl = yaml.dump(map);
MyDsl myDsl2 = yaml2.loadAs(modifiedDsl, MyDsl.class);

可能不是最漂亮的解决方案,但它确实有效。仍然悬而未决的是如何在另一个方向上使用它(为 DSL 对象生成 YAML)。

关于java - SnakeYAML:以不同的方式创建一些对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44561314/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com