WebMvcConfigurer时间类型转换运行时机

WebMvcConfigurerAdapter 或者WebMvcConfigurer 对于时间格式转换的运行时机是在什么时候,

extends:
 objectMapper.setTimeZone(TimeZone.getTimeZone("GMT+8"));
        // 时间格式化
        objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
        objectMapper.setDateFormat(new SimpleDateFormat(DateUtil.getDateTimePattern()));

从mysql查出timestamp类型的数据后,类型转换是在什么时候处理的,怎么处理的;也就是时间类型的运行时机是什么?

https://blog.csdn.net/myth_g/article/details/106554592