The deserialization is failing after the update.
I updated my micro-service from Spring 1.5.10.RELEASE to Spring 2.0.3.RELEASE
Solution 4
1.18.8 and Jackson 2.9.9 @Builder
@Getter
@AllArgsConstructor
public class EventDTO {
private String id;
private Integer isCancelled;
private String recurringEventId;
private String summary;
private String description;
private String location;
private String startDateTime;
private String endDateTime;
/**
* Make Jackson happy
*/
public EventDTO() {
}
}