When we map List we can use @XmlElementWrapper annotation to wrap every element in some tag. But if this Collection holds instances from different classes and we want use different tags for them, what should we do? add some annotation for each class that can be contained in this collection? what annotation? Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
This may be what you're looking for @XmlElements which is how JAXB represents choice structures:
For a more detailed Example see: |
|||||||
|