I have json with field that contains two different types.

"fields":[{"value":"ZIELONE OKO"},{"value":{"@nil":"true"}}]

I have problem with deserializing these. My class with model contains:

private String value;

And I simply need to translate {"@nil":"true"} into null. Right now I get error:

The JsonDeserializer StringTypeAdapter failed to deserialized json object {"@nil":"true"} given the type class java.lang.String

Any ideas how to resolve that?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Ideally, I would change code that produces that odd JSON: shouldn't second value just be JSON null? I guess it is being produced by some complex process, starting with XML (which must use 'isNul' to differentiate between null String and empty String).

But if that is not possible, I think both Jackson and Gson would require either custom deserializer; or to first bind to a generic Map and then handle value oddities explicitly. In second case, you just declare type to bind to as Map (possible with generic type info using reference; but that should be optional).

link|improve this answer
I know changing json would be optimal but it's out of discussion. It seems I need some sort of custom deserializator but question is how? – zirael Feb 22 '11 at 9:59
Documentations for both GSon and Jackson show examples of custom serializers, deserializers. For Jackson (wiki.fasterxml.com/JacksonHowToCustomSerializers), Gson (sites.google.com/site/gson/…), for example. – StaxMan Feb 22 '11 at 17:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.