cloud endpoint not respecting Jackson annotations
问题 I have a class Organization with few date fields as follows. public class Organization { private String _id; private String name; @JsonDeserialize(using=JsonDateDeserializer.class) @JsonSerialize(using=JsonDateSerializer.class) private Date createdTime; // getters and setters } To handle the date in simple way on client side I convert date to long and send it to client using these JsonSerializer as follows public class JsonDateSerializer extends JsonSerializer<Date>{ @Override public void