Skip to content

Instantly share code, notes, and snippets.

@CheolhoJeon
Created April 27, 2020 10:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CheolhoJeon/7def5103d92fbc24ea5c276866db602e to your computer and use it in GitHub Desktop.
Save CheolhoJeon/7def5103d92fbc24ea5c276866db602e to your computer and use it in GitHub Desktop.
@Configuration
@EnableWebMvc
public class MvcConfig implements WebMvcConfigurer {
...
@Override
public void extendMessageConverters(final List<HttpMessageConverter<?>> converters) {
DateTimeFormatter formatter = DataTimeFormatter.ofPattern("yyyyMMddHHmmss");
ObjectMapper objectMapper = Jackson2ObjectMapperBuilder
.json()
.featureToEnable(SerializationFeature.INDENT_OUTPUT)
.deserializerByType(LocalDateTime.class, new LocalDateTimeDeserializer(formatter))
.simpleDateFormat("yyyyMMddHHmmss")
.build();
converters.add(0, new MappingJackson2HttpMessageConverter(objectMapper));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment