Anybody knows how to format LocalTime in Springfox? Converting to ISO format works for LocalDate with this setting to ObjectMapper
.featuresToDisable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
But for LocalTime I'm still getting this in example and model of swagger-ui
"time": {
"hour": "string",
"minute": "string",
"nano": 0,
"second": "string"
}
I have read something that swagger spec do not use time format. Is this somewhat connected?