String json = ResourceUtils.find(contextClass, resourceName);
if (json != null) {
ObjectMapper mapper = new ObjectMapper();
// Use JAXB annotations
AnnotationIntrospector introspector = new JaxbAnnotationIntrospector();
mapper = mapper.setAnnotationIntrospector(introspector);
mapper = mapper.configure(JsonParser.Feature.ALLOW_SINGLE_QUOTES, true);
mapper = mapper.configure(JsonParser.Feature.ALLOW_UNQUOTED_FIELD_NAMES, true);
mapper = mapper.configure(JsonParser.Feature.ALLOW_COMMENTS, true);