我正在尝试使用 Castor 将 POJO 映射到 XML。
假设我有一个包含项目集合的订单......有没有办法实现如下所示的 xml:
<order>
...order attributes
<items>
<item> ..item attributes </item>
<item> ..other item </item>
</items>
</order>
我可以制作类似但没有<items>
节点的东西。在其他情况下这不是问题,但我的 XML 必须遵守严格的 XSD 模式,所以我需要这样做。
谢谢!
我认为一种“解决方法”将涉及创建一个仅包含项目列表的新 java 对象(即节点)......有人能想到更好的方法吗?从现在开始有一个 100 代表的赏金开放!