Example usage for com.fasterxml.jackson.module.hibernate HibernateModule HibernateModule

List of usage examples for com.fasterxml.jackson.module.hibernate HibernateModule HibernateModule

Introduction

In this page you can find the example usage for com.fasterxml.jackson.module.hibernate HibernateModule HibernateModule.

Prototype

public HibernateModule() 

Source Link

Usage

From source file:com.citruspay.enquiry.HibernateAwareObjectMapper.java

public HibernateAwareObjectMapper() {
    super();//  w w w.j av a 2s.co  m
    setPropertyNamingStrategy(PropertyNamingStrategy.CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES);
    HibernateModule hm = new HibernateModule();
    registerModule(hm);
    configure(Feature.FAIL_ON_EMPTY_BEANS, false);
}