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.
excellent job.
saved my day.
thanks
Thanks a lot :)
Thanks, works fine !
You just saved my day with this nifty trick, thnx!
Fantastic! Proved very useful. This saved time, as I wasn’t required to map all elements in first go.
This doesn’t work for me. I still get the same error message when unknown XML elements pop up.
Thank you so much for documenting this: really helpful.
Very Helpful
Thanks dude!
I still hope they introduce some configuration to Ignore Unexpected elements :)
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?
Doesn’t seen to work well if your base class includes a List of ‘defined class’ elements. Those will improperly defined as Object.class.
Thanks, you just saved me a lot of time.
Thanks! It worked perfectly!
Thanks for that, extremely helpful!
Exactly what I was hoping to find!
Thank you for posting this, it was incredibly helpful.
thanks a lot. was very helpful.
nice!!!. Helped a lot!
thank you good sir! very helpful
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;
Very good!
Mate…A big thank you from Australia!
Big thanks from The Netherlands
Big thanks from Israel!
Big thanks from Scotland!
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.
Very very helpful. Thanks!
Great hint.
We needed that exactly that functionality and i didn’t find it in the API.
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?
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
Good work! Thank you, really excellent SEO title meant I could find this straight from Google.
Thanks helped me a bunch too
To handle this shortcoming, XStream 1.4.5 added two new methods called ignoreUnknownElement (without parameters and with a String parameter).