给定一个xml文件,其中每个值都包含在它自己的元素中:
<root>
<type1>
<foo>1</foo>
</type1>
<type2>
<bar>2</bar>
</type2>
</root>
有一些简单的方法来映射这个吗?与@XmlElement("type1/foo")
或@XmlElementWrapper("type1") @XmlElement("foo")
一样?据我所知,我需要创建一个相应的类模型(Root
,Type1
,Type2
),其中Type1
和Type2
不提供附加值但只是作为一个包装。