[ACCEPTED]-Jackson detection of duplicate JSON POJO properties and Map keys-jackson
Accepted answer
Can use JsonParser.Feature.STRICT_DUPLICATE_DETECTION
ObjectMapper mapper = new ObjectMapper();
mapper.enable(JsonParser.Feature.STRICT_DUPLICATE_DETECTION);
MyPOJO result = mapper.readValue(json, MyPOJO.class);
Results in:
com.fasterxml.jackson.core.JsonParseException: Duplicate field 'field1'
How to use Jackson to validate duplicated properties? post about DeserializationFeature.FAIL_ON_READING_DUP_TREE_KEY
0
Have a look at this discussion: http://jackson-users.ning.com/forum/topics/detecting-duplicate-field
Here is 2 an example code that comes out from it for 1 a Map class:
public class JacksonDuplicates {
private static final String JSON = "{\n" +
" \"field1\" : 1,\n" +
" \"field1\" : 2,\n" +
" \"map\" : {\n" +
" \"1\" : {\n" +
" \"fieldA\" : \"null\",\n" +
" \"fieldB\" : \"2\"\n" +
" },\n" +
" \"1\" : {\n" +
" \"fieldX\" : \"null\",\n" +
" \"fieldY\" : \"2\"\n" +
" }\n" +
" }\n" +
"}";
private static class SingleKeyHashMap<K, V> extends HashMap<K, V> {
@Override
public V put(K key, V value) {
if (containsKey(key)) {
throw new IllegalArgumentException("duplicate key " + key);
}
return super.put(key, value);
}
}
public static void main(String[] args) throws IOException {
SimpleModule module = new SimpleModule();
module.addAbstractTypeMapping(Map.class, SingleKeyHashMap.class);
ObjectMapper mapper = new ObjectMapper();
mapper.registerModule(module);
mapper.readValue(JSON, Map.class);
}
}
Output:
Exception in thread "main" java.lang.IllegalArgumentException: duplicate key field1
at jackson.JacksonDuplicates$SingleKeyHashMap.put(JacksonDuplicates.java:38)
at com.fasterxml.jackson.databind.deser.std.MapDeserializer._readAndBindStringMap(MapDeserializer.java:434)
at com.fasterxml.jackson.databind.deser.std.MapDeserializer.deserialize(MapDeserializer.java:312)
at com.fasterxml.jackson.databind.deser.std.MapDeserializer.deserialize(MapDeserializer.java:26)
at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:2993)
at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2098)
at jackson.JacksonDuplicates.main(JacksonDuplicates.java:50)
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.