Skip to content

Instantly share code, notes, and snippets.

@ghusta
Created October 25, 2017 15:23
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 ghusta/a1160516fc39f5038a1edb8d0d51117a to your computer and use it in GitHub Desktop.
Save ghusta/a1160516fc39f5038a1edb8d0d51117a to your computer and use it in GitHub Desktop.
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