I\'m trying to configure Jackson to show JSR 310 instants in ISO 8601 format.
@Configuration class Jackson { @Bean static ObjectMapper objectMapper(
Actually, you could make it more bootify just using jackson auto-configuration properties in application.properties (or application.yml):
spring.jackson.serialization.write_dates_as_timestamps=false