mapper = new ObjectMapper();
//mapper.registerModule(new JsonOrgModule());
}
// Let's honor the Jackson annotations first
AnnotationIntrospector primary = new JacksonAnnotationIntrospector();
AnnotationIntrospector secondary = new JaxbAnnotationIntrospector();
AnnotationIntrospector pair = new AnnotationIntrospector.Pair(primary, secondary);
mapper.setDeserializationConfig(mapper.getDeserializationConfig().withAnnotationIntrospector(pair)
.without(DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES)
.withDateFormat(StdDateFormat.getBlueprintISO8601Format()));
mapper.setSerializationConfig(mapper.getSerializationConfig().withAnnotationIntrospector(pair)