4243444546474849
JsonProperty annotation = f.getAnnotation(JsonProperty.class); return annotation != null && "_id".equals(annotation.value()); } private boolean hasIdAnnotation(Field f) { Id annotation = f.getAnnotation(Id.class); return annotation != null; }