Assuming you are using the default Spring deserialization by default, all you have to do is annotate your field with @JsonProperty.
@JsonProperty(value = "Event.GradeBook.GradeEvent")
private String Event_Gradebook_GradeEvent;
But you must follow the Java naming conventions.
source
share