Package com.fasterxml.jackson.module.hibernate

Examples of com.fasterxml.jackson.module.hibernate.HibernateModule


import com.fasterxml.jackson.module.hibernate.HibernateModule;

public class HibernateAwareObjectMapper extends ObjectMapper {
  public HibernateAwareObjectMapper() {
    HibernateModule hm = new HibernateModule();
    registerModule(hm);
    configure(Feature.FAIL_ON_EMPTY_BEANS, false);
  }
View Full Code Here

TOP

Related Classes of com.fasterxml.jackson.module.hibernate.HibernateModule

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.