org.apache.batchee.jackson.JacksonJSonWriter
Write a JSON file using jackson
- configuration: DeserializationFeature and SerializationFeature comma separated key-value configurations
- encoding: output encoding
- fieldNameGeneratorClass: how to generate field names for each item, default uses item1, item2, …
- file: output file
- skipRoot: is the array wrapped in an object or not
org.apache.batchee.jackson.JacksonJsonReader
Reads a JSON file using jackson.
- configuration: DeserializationFeature and SerializationFeature comma separated key-value configurations
- file: Incoming file
- skipRoot: Should root be skipped (default: true)
- type: Type to instantiate