completed nflow integration into onboarding
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
package zw.qantra.tm.configs;
|
||||
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import com.fasterxml.jackson.datatype.jdk8.Jdk8Module;
|
||||
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
|
||||
import com.fasterxml.jackson.datatype.joda.JodaModule;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
@@ -16,6 +17,7 @@ public class JacksonConfig {
|
||||
ObjectMapper objectMapper = new ObjectMapper();
|
||||
objectMapper.registerModule(new JavaTimeModule());
|
||||
objectMapper.registerModule(new JodaModule());
|
||||
objectMapper.registerModule(new Jdk8Module());
|
||||
|
||||
return objectMapper;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user