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

How can I rearrange my xml elements from:

- <course>
  - <CourseType>
    - <GroupIndex>
         <index>1</index> 
         <professor>James</professor> 
      </GroupIndex>
      <classType>Lecture</classType> 
    </CourseType>
  <courseCode>3000</courseCode> 
 </course>

To:

- <course>
    <courseCode>3000</courseCode>
  - <CourseType>
      <classType>Lecture</classType>
    - <GroupIndex>
         <index>1</index> 
         <professor>James</professor> 
      </GroupIndex> 
    </CourseType> 
 </course>

It's about how to arrange them such that elements that cant be expanded will always be above those that can be expanded.

I'm using JAXB marshalling in java to convert my objects to produce the xml file.

share|improve this question

1 Answer

up vote 5 down vote accepted

Using a proporder in the class you are unmarshalling should help with this issue

e.g.

@XmlType(propOrder = {
        "courseCode",
        "CourseType"
    })

note: when using a propOrder all elements in the object must be added to the propOrder.

share|improve this answer
1  
I would also like to direct you to a blog from @BlaiseDoughan blog.bdoughan.com, he and his blog have been very useful in JaxB related issues. – Sean F Nov 12 '12 at 1:15
1  
Thanks alot! Solved my problem and that's a good blog. Thanks again for the recommendation. – U.f.O Nov 12 '12 at 1:38

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.