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

So what I am looking to do is to achieve this structure:

<root>
   <child>value</child>
   <child>value</child>
   .
   .
</root>

The problem is I do not know how many children are there in advances, so need a list. I have tried this but I end up with:

<root>
   <child/>
   <child/>
   .
   .
</root>

This is using JAXB.

Please help me out..

share|improve this question
2  
um,.... show your code perhaps? – Hovercraft Full Of Eels Jul 19 '12 at 16:38
1  
What does your schema look like? – Liggy Jul 19 '12 at 16:41
1  
@Liggy: if he's even using a schema. If not, then again he'll need to show code and its annotations. – Hovercraft Full Of Eels Jul 19 '12 at 16:55
I would give code but this is for work and I was thinking if someone could give me an example of how to achieve this. If it is very necessary then I will probably write a dummy. – user1479589 Jul 19 '12 at 17:10
1  
hmm would @XmlValue be any help? – user1479589 Jul 19 '12 at 17:23
show 2 more comments

2 Answers

You could do one the following:

Option #1

Root

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Root {

    List<String> child;

}

Option #2

Root

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Root {

    List<Child> child;

}

Child

@XmlAccessorType(XmlAccessType.FIELD)
public class Child {
    @XmlValue
    String value;

}

For More Information

share|improve this answer
up vote 0 down vote accepted

Okey so What I did was added a new annotation and setter and getter methods and it worked eg:

@XmlValue protected String myval;

            public String getMyval(){
                return this.myval;
            }

            public void setMyval(String myval){
                this.myval = myval;
            }
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.