unsupportedtemporaltypeexception with @JsonFormat on POJO with the property of type java.time.Instant
Error java.time.temporal.unsupportedtemporaltypeexception unsupported field yearofera
I do not want to write a manual code for conversion. Please suggest some other way
class MyClass{
@JsonFormat(shape= Shape.String, pattern="yyyy-dd-mm HH:mm:ss")
private Instant createTime;
}