* Prevents Hibernate Lazy Instantiation
*/
Hibernate4Module hm = new Hibernate4Module();
this.objectMapper.registerModule(hm);
// Correct Serialization of JDK 8 javax.time API's
JSR310Module jsr310Module = new JSR310Module();
this.objectMapper.registerModule(jsr310Module);
/**
* Configures de Mapper with DefaultMapperConfig
*/
defaultConfig.configMapper(objectMapper);