gpt4 book ai didi

java - JAXB:序列化嵌套映射时获取空值

转载 作者:太空宇宙 更新时间:2023-11-04 07:20:13 24 4
gpt4 key购买 nike

我正在尝试使用 JAXB 序列化 XML 中的类。

@XmlRootElement
class Foo
{
Hashtable<String, Hashtable<String, Integer>> table = new Hashtable<>();

public Hashtable<String, Hashtable<String, Integer>> getTable() {
return table;
}

public void setTable(Hashtable<String, Hashtable<String, Integer>> t) {
table = t;
}
}

但是,这会生成带有空值的 XML(我向您保证这些值确实存在!)

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Foo>
<table>
<entry>
<key>Test key</key>
<value/>
</entry>
</table>
</Foo>

有没有简单的方法可以解决这个问题?我真的不想使用 @XmlJavaTypeAdapters除非我真的必须这么做。

使用普通的哈希表可以正常工作:Hashtable<String, Integer>> table = new Hashtable<>();

最佳答案

很抱歉让您失望,但目前没有简单的方法来修复它。外部哈希表和内部哈希表之间存在显着差异。外部是一种属性,由 com.sun.xml.bind.v2.runtime.property.SingleMapNodeProperty<BeanT, ValueT> 在内部处理。类(class)。这个类做了一些魔法来将映射表示为键/值条目。

但是,对于内部哈希表,它不是“静态”属性,而是动态属性。这就是为什么它由通用 com.sun.xml.bind.v2.model.impl.RuntimeClassInfoImpl 处理。 。该类在 Hashtable 中找不到任何 JAXB 属性(即 java bean 属性 - 具有 getter 和 setter)。结果你得到空 value元素。

由于同样的原因,以下动态 Hashtable 属性也不起作用:

@XmlRootElement
@XmlSeeAlso(Hashtable.class)
public static class TypeWithHashtableAsObject {
private Object property;

public Object getProperty() {
return property;
}

public void setProperty(Object property) {
this.property = property;
}

}

...
TypeWithHashtableAsObject foo = new TypeWithHashtableAsObject();
Hashtable<String, Integer> property = new Hashtable<>();
property.put("innerKey", 12);
foo.setProperty(property);
StringWriter writer = new StringWriter();
marshaller.marshal(foo, writer);
System.out.println(writer.toString());

结果:

<typeWithHashtableAsObject>
<property xsi:type="hashtable" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
</typeWithHashtableAsObject>

这是空元素。

In another answer您可以找到更多如何编码(marshal)嵌套集合的示例。另一种解决方案是用另一种类型包装 Hashtable。喜欢表:

public class Table {
private Hashtable<String, Integer> table = new Hashtable<>();

public Table(Hashtable<String, Integer> table) {
this.table = table;
}

public Table() {

}

public Hashtable<String, Integer> getTable() {
return table;
}

public void setTable(Hashtable<String, Integer> table) {
this.table = table;
}

}

并更改Foo.table输入 Hashtable<String, Table> .

结果比原始结果更详细,但恕我直言,非常一致:

<foo>
<table>
<entry>
<key>key1</key>
<value>
<table>
<entry>
<key>innerKey</key>
<value>12</value>
</entry>
</table>
</value>
</entry>
</table>
</foo>

关于java - JAXB:序列化嵌套映射时获取空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19452353/

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