JAXB 强制对集合进行排序
我正在编组具有 Set 类型字段的对象。该实现是未排序的,因此生成的 XML 元素的顺序是任意的,而且每次进行封送时我都会得到不同的顺序。
有没有办法告诉编组器如何在编组期间对字段内容进行排序?
I'm marshaling objects which have fields of type Set. The implementation is unsorted, so the order of resulting XML elements is arbitrary, moreover I got a different order every time I do marshaling.
Is there a way to tell marshaller how to sort a field contents during marshaling?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以利用
SortedSet
。如果您在实例上初始化Set
的实例,那么 JAXB 将使用该实现而不是创建新的实现:You could take advantage of a
SortedSet
. If you initialize an instance of aSet
on your instance then the JAXB will use that implementation instead of creating a new one: