Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Have a xml data like

<Items><Item><name>"test1"</name></Item><Item><name>"test2"</name></Item></Items>

Looks like jaxb cannot unmashall this when defining only Item class. It requires me to define both Items and Item class. Is there any way to just define one class to handle list?

share|improve this question

1 Answer

up vote 3 down vote accepted

JAXB requires a root object. For more information on JAXB and Lists see:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.