Omit Unexpected XML Elements With XStream

XStream is a Java xml library, which nicely serializes Java objects to XML and vice versa. It can easily deal with missing (i.e. optional) XML elements. The corresponding Java fields will just be left blank.

<user>
    <name>Peter Voss<name>
</user>

can be read into the Java object:

public class User {
    private String name;
    private String role;

    // getter and setter methods are here
}

In this case the optional <role> field is missing in the XML and the corresponding field in the User Java object will be left null when deserializing the XML.

But once if you have decided on your XML API, you might want to question if it is flexible enough. Just consider you have built software based on this XML spec. Can you still add optional XML elements without breaking the applications that you have already shipped? Consider you want to add more information, like a <department> element. Will your clients be able to just ignore this piece of information? The short answer is: No. XStream will throw a ConversionException if it finds an element that has no corresponding Java field. The Jira ticket XSTR-30 is an improvement request related to this topic. But so far XStream has no simple switch to turn off complaining about unknown elements.

But you could easily tweak XStream to ignore additional elements by adding your own custom mapper that ignores the field. The following snippet creates an XStream instance that ignores additional fields. It is grabbed from the CustomMapperTest.testCanBeUsedToOmitUnexpectedElements() unit test that is part of the XStream source code:

XStream xstream = new XStream() {
  @Override
  protected MapperWrapper wrapMapper(MapperWrapper next) {
    return new MapperWrapper(next) {
      @Override
      public boolean shouldSerializeMember(Class definedIn,
              String fieldName) {
        if (definedIn == Object.class) {
          return false;
        }
        return super.shouldSerializeMember(definedIn, fieldName);
      }
    };
  }
};

I just wanted to write this down, because a solution for this common problem is somewhat difficult to find right now.

Advertisement

34 thoughts on “Omit Unexpected XML Elements With XStream

  1. Thanks this was great.

    I did have 1 problem, i had an implicit collection and it prevented it from parsing it.

    I tweaked your code to this:
    if (definedIn == Object.class && !fieldName.equals(“item”)) {
    return false;
    }

    is there a better way?

  2. Thanks for this! Daniel, I added to your suggestion as I was also having trouble with implicit fields. Rather than just hardcoding it, you can overload addImplicitCollection and keep track yourself (with a TreeSet member variable or whatever):

    @SuppressWarnings(“rawtypes”)
    @Override
    public void addImplicitCollection(Class ownerType, String fieldName,
    String itemFieldName, Class itemType) {
    implicitFields.add(fieldName);
    super.addImplicitCollection(ownerType, fieldName, itemFieldName, itemType);
    }

    // Then in shouldSerializeMember:
    if (!implicitFields.contains(fieldName) && definedIn.equals(Object.class))
    return false;

  3. Thank you Daniel. We’ve been using this quiet sometime now. Recently we ran into some performance issues and we profiled our application.

    We were surprised to notice that shouldSerializeMember method was using up almost 9-15% of CPU time, almost equalling CPU utilization of our core ebusiness logic.

    The reason is that, we have a reasonalbly complex XML structure and the method has to recurse to get to the innermost element, increasing CPU utilization.

    I would recomend this solution for a simple XML structure.

    Working on an alternate solution. Will update, if I get ti done.

  4. Very insightful of you to lift this problem.

    We’ve always used parameters for selecting added elements in our service responses in order to manage this, thus not allowing to set fields that are not backward compatible unless explicitly stated. The solution you suggest is much more intuitive.

    Since you wrote this, has there been an update of XStream where it can actually be configured as default?

    1. Hi Martin,

      thanks for your feedback. I didn’t follow the recent developments of XStream, but I am not aware of an update in this area.

      –Peter

  5. To handle this shortcoming, XStream 1.4.5 added two new methods called ignoreUnknownElement (without parameters and with a String parameter).

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s