Код: Выделить всё
@Bean
public ObjectMapper objectMapper()
{
final ObjectMapper mapper = new ObjectMapper();
mapper.enable(SerializationFeature.INDENT_OUTPUT);
mapper.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS);
mapper.setDateFormat(new StdDateFormat().withColonInTimeZone(true)); // Makes no difference to output
mapper.findAndRegisterModules();
return mapper;
}
Код: Выделить всё
"2020-02-28T12:28:29.01Z"
"2020-02-28T12:36:21.885Z"
Код: Выделить всё
"2020-02-28T10:41:25.287+00:00"
Большое спасибо!
Подробнее здесь: https://stackoverflow.com/questions/604 ... 0-timezone