Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XStream : node with attributes and text node?

Tags:

java

xml

xstream

I would like to serialize an object to an XML of this form with XStream.

<node att="value">text</node>

The value of the node (text) is a field on the serialized object, as well as the att attribute. Is this possible without writing a converter for this object?

Thanks!

like image 694
subb Avatar asked Nov 13 '09 03:11

subb


2 Answers

you can use a predefined Converter.

@XStreamAlias("node")
@XStreamConverter(value=ToAttributedValueConverter.class, strings={"text"})
class Node {
  private String att;
  private String text;
}   

XStream Annotations Tutorial also says that for att attribute:

Note, that no XStreamAsAttribute annotations were necessary. The converter assumes it implicitly.

like image 64
mantrid Avatar answered Oct 27 '22 02:10

mantrid


write a convertor, it should be something similar to the code snippet

class FieldDtoConvertor implements Converter {
    @SuppressWarnings("unchecked")
    public boolean canConvert(final Class clazz) {
        return clazz.equals(FieldDto.class);
    }

    public void marshal(final Object value,
            final HierarchicalStreamWriter writer,
            final MarshallingContext context) {
        final FieldDto fieldDto = (FieldDto) value;
        writer.addAttribute(fieldDto.getAttributeName(), fieldDto.getAttributeValue());     
    }
}

And while using XStream,register the convertor

final XStream stream = new XStream(new DomDriver());
stream.registerConverter(new FieldDtoConvertor());
like image 25
Kiru Avatar answered Oct 27 '22 00:10

Kiru