JAXB создает пустой TreeSet после демаршалинга - PullRequest
2 голосов
/ 12 июля 2011

У меня есть клиент службы RESTful. Служба возвращает SortedSet<Movie>, где Movie - аннотированный класс JAXB. Полученный XML приведен ниже.

На стороне клиента у меня есть пользовательский MessageBodyReader, как указано ниже. Проблема в том, что Unmarshaller всегда возвращает пустой TreeSet.

MovieSetMessageBodyReader.java:

@SuppressWarnings("unchecked")
@Override
public TreeSet<Movie> readFrom(Class<TreeSet<Movie>> type,
    Type genericType, Annotation[] annotations, MediaType mediaType,
    MultivaluedMap<String, String> httpHeaders, InputStream entityStream)
    throws IOException, WebApplicationException {
Class<Movie> baseType = Types.getCollectionBaseType(type, genericType);

try {
    JAXBContext ctx = JAXBContext.newInstance(type, baseType);
    JAXBElement<?> element = ctx.createUnmarshaller().unmarshal(
        new StreamSource(entityStream), type);

    return (TreeSet<Movie>) element.getValue();
} catch (JAXBException e) {
    e.printStackTrace();
}

return null;
}

MovieServiceRestEasyClient.java:

@GET
@Consumes("text/xml")
public SortedSet<Movie> sendRequestByProxy() {
Map<String, Object> requestAttributes = new HashMap<String, Object>();
requestAttributes.put("path", path);

MovieServiceRestEasy proxy = ProxyFactory.create(
    MovieServiceRestEasy.class, ENDPOINT, requestAttributes);
ClientResponse<TreeSet<Movie>> response = (ClientResponse<TreeSet<Movie>>) proxy
    .getMovieSet(path);
return response.getEntity(TreeSet.class, (new GenericType<TreeSet<Movie>>() {}).getGenericType());

}

XML:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<collection>
<movie>     
    <genre>Unknown</genre>
    <name>4.3.2.1</name>
    <year>2010</year>
</movie>
<movie>     
    <genre>Unknown</genre>
    <name>Battlestar Galactica The Plan</name>
    <year>2009</year>
</movie>
</collection>

1 Ответ

0 голосов
/ 15 июня 2012

Почему бы вам не использовать POJO для хранения не маршалированных / маршаллированных значений? например:

import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;


@XmlRootElement( name = "movie" )
public class Movie
{
    @XmlElement
    String name;

    @XmlElement
    String genre;
...