使用 Castor,如何将 Java 类“java.util.ArrayList”映射到 Java 类“java.util.ArrayList”?到元素“ArrayList”,还为其包含的对象生成元素?
使用 Castor,如何将 Java 类 java.util.ArrayList
映射到元素
而不是
例如,类映射
<class name="java.util.ArrayList">
<map-to xml="ArrayList" />
</class>
将 ArrayList 对象映射到空元素,省略 ArrayList 可能包含的对象的元素。如何强制 Castor 也为那些包含的对象生成元素?
Using Castor, how do you map Java class java.util.ArrayList
to element <ArrayList/>
instead of <array-list/>
while still including the elements that it contains?
For example, the class mapping
<class name="java.util.ArrayList">
<map-to xml="ArrayList" />
</class>
maps an ArrayList
object to an empty element, omitting elements for the objects that the ArrayList
may contain. How do you coerce Castor into also generating elements for those contained objects?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将属性
autocomplete="true"
添加到映射:请参阅
in Castor XML 映射。Add attribute
autocomplete="true"
to the mapping:See description of
auto-complete
under Section<class/>
in Castor XML Mapping.