I have simple question i use this configuration in application.properties in Spring Boot
spring.jackson.date-format=yyyy-MM-dd
spring.jackson.time-zone=Europe/Zagreb
but it's not working
when i use this annotation on class is work correct
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd",timezone = "Europe/Zagreb")
Any idea what is bad?