Skip to content

Instantly share code, notes, and snippets.

@CheolhoJeon
Last active April 27, 2020 07:57
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/5c7ea4eca7b98ea0fa4f89442d11a770 to your computer and use it in GitHub Desktop.
Save CheolhoJeon/5c7ea4eca7b98ea0fa4f89442d11a770 to your computer and use it in GitHub Desktop.
@Configuration
@EnableWebMvc
public class MvcConfig implements WebMvcConfigurer {
...
@Override
public void extendMessageConverters(final List<HttpMessageConverter<?>> converters) {
ObjectMapper objectMapper = Jackson2ObjectMapperBuilder
.json()
.simpleDateFormat("yyyyMMddHHmmss") // Date 타입 객체를 위한 변환 패턴
.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