Skip to content

Instantly share code, notes, and snippets.

@ghusta
Created October 25, 2017 15:23
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
com.fasterxml.jackson.databind.PropertyNamingStrategy.SnakeCaseStrategy
ObjectMapper specificObjectMapper = new ObjectMapper();
specificObjectMapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE);
specificObjectMapper.configure(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES, false);
specificObjectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment