Example usage for com.fasterxml.jackson.dataformat.csv CsvFactory CsvFactory

List of usage examples for com.fasterxml.jackson.dataformat.csv CsvFactory CsvFactory

Introduction

In this page you can find the example usage for com.fasterxml.jackson.dataformat.csv CsvFactory CsvFactory.

Prototype

public CsvFactory(ObjectCodec oc) 

Source Link

Usage

From source file:org.jberet.support.io.JacksonCsvItemReaderWriterBase.java

@Override
protected void initJsonFactory() throws Exception {
    if (jsonFactoryLookup != null) {
        jsonFactory = InitialContext.doLookup(jsonFactoryLookup);
    } else {/* w w w.  j a  v a  2 s  . c o  m*/
        jsonFactory = new CsvFactory(new CsvMapper());
    }
}