Jackson fails on deserializing String to Joda-Time Jackson fails on deserializing String to Joda-Time json json

Jackson fails on deserializing String to Joda-Time


Did you register the JodaModule module in your ObjectMapper?

ObjectMapper mapper = new ObjectMapper();mapper.registerModule(new JodaModule());


It has worked for me when I add the following dependency in build.gradle

compile group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-joda'