Example usage for com.fasterxml.jackson.datatype.hibernate4 Hibernate4Module enable

List of usage examples for com.fasterxml.jackson.datatype.hibernate4 Hibernate4Module enable

Introduction

In this page you can find the example usage for com.fasterxml.jackson.datatype.hibernate4 Hibernate4Module enable.

Prototype

public Hibernate4Module enable(Feature f) 

Source Link

Usage

From source file:cz.cvut.bar.service.json.HibernateEntityObjectMapper.java

public HibernateEntityObjectMapper() {
    Hibernate4Module hbm = new Hibernate4Module();
    hbm.enable(Hibernate4Module.Feature.FORCE_LAZY_LOADING);
    this.registerModule(hbm);
}