2016年5月6日 | Leave a comment 问题: com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "startDate" (class **** ), not marked as ignorable 1 com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "startDate" (class **** ), not marked as ignorable 解决: ObjectMapper om = new ObjectMapper(); om.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES); 12 ObjectMapper om = new ObjectMapper(); om.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);