Global jackson configuration does not work (Kotlin, Spring-Boot)
i am not able to get ISO formatted dates.
Setup:
Kotlin 1.7.10
Spring Boot 2.7.1
Jackson 2.13.3
with following jackson dependencies:
jackson-module-kotlin
jackson-databind
Application properties
spring:
jackson:
date-format: "yyyy-MM-dd'T'HH
mmss.SSS'Z'"
default-property-inclusion: non_null
serialization:
write-dates-as-timestamps: false
INDENT_OUTPUT: true
deserialization:
FAIL_ON_UNKNOWN_PROPERTIES: false...