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

I have the following xml format that i want to bind it through a POJO and using JAXB annotations. The XML format is the following:

 <datas>
   <data>apple<data>
   <data>banana<data>
   <data>orange<data>
 <datas>

And i'm trying to bind the data through the following POJO:

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

  @XmmlElement
  private List<String> data;

  //get/set methods

}

And also i try and this POJO:

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

  @XmmlElement
  private List<Data> datas;

  //get/set methods

}

//

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

  @XmmlElement
  private String data;

  //get/set methods

}

In the first case it retrieves only the first data: apple. In the second case doesn't retrieve anything. Could someone help me to provide the appropriate POJO and annotations in order to bind all data?

share|improve this question

2 Answers

up vote 2 down vote accepted

You can do one of the following options:

OPTION #1

Datas

package forum11311374;

import java.util.List;
import javax.xml.bind.annotation.*;

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

  private List<String> data;

  //get/set methods

}

For More Information


OPTION #2

Datas

package forum11311374;

import java.util.List;
import javax.xml.bind.annotation.*;

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

  @XmlElement(name="data")
  private List<Data> datas;

  //get/set methods

}

Data

package forum11311374;

import javax.xml.bind.annotation.*;

@XmlAccessorType(XmlAccessType.FIELD)
public class Data{

  @XmlValue
  private String data;

  //get/set methods

}

For More Information


The following can be used with both options:

input.xml/Ouput

I have updated the XML document to contain the necessary closing tags. <data>apple</data> instead of <data>apple<data>.

<datas>
   <data>apple</data>
   <data>banana</data>
   <data>orange</data>
 </datas>

Demo

package forum11311374;

import java.io.File;
import javax.xml.bind.*;

public class Demo {

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContext.newInstance(Datas.class);

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        File xml = new File("src/forum11311374/input.xml");
        Datas datas = (Datas) unmarshaller.unmarshal(xml);

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.marshal(datas, System.out);
    }

}
share|improve this answer

The first option did work for me... not sure why you are getting the problem... Try this annotation...

@XmlElements(@XmlElement(name="data", type=String.class))
private List<String> datas; //ignore the variable name
share|improve this answer
@XmlElements corresponds to the concept of xsd:choice in XML schema, and is not the correct annotation for this particular use case. For more information see: blog.bdoughan.com/2010/10/jaxb-and-xsd-choice-xmlelements.html – Blaise Doughan Jul 3 '12 at 13:52

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.