Created
October 25, 2017 15:23
-
-
Save ghusta/a1160516fc39f5038a1edb8d0d51117a to your computer and use it in GitHub Desktop.
com.fasterxml.jackson.databind.PropertyNamingStrategy.SnakeCaseStrategy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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