Uses of Interface
org.springframework.batch.item.json.JsonObjectMarshaller
Packages that use JsonObjectMarshaller
Package
Description
Infrastructure implementations of JSON input and output.
Builders for JSON item reader and writer.
-
Uses of JsonObjectMarshaller in org.springframework.batch.item.json
Classes in org.springframework.batch.item.json that implement JsonObjectMarshallerModifier and TypeClassDescriptionclass
A json object marshaller that uses Google Gson to marshal an object into a json representation.class
A json object marshaller that uses Jackson to marshal an object into a json representation.Methods in org.springframework.batch.item.json with parameters of type JsonObjectMarshallerModifier and TypeMethodDescriptionvoid
JsonFileItemWriter.setJsonObjectMarshaller
(JsonObjectMarshaller<T> jsonObjectMarshaller) Set theJsonObjectMarshaller
to use to marshal object to json.Constructors in org.springframework.batch.item.json with parameters of type JsonObjectMarshallerModifierConstructorDescriptionJsonFileItemWriter
(org.springframework.core.io.WritableResource resource, JsonObjectMarshaller<T> jsonObjectMarshaller) Create a newJsonFileItemWriter
instance. -
Uses of JsonObjectMarshaller in org.springframework.batch.item.json.builder
Methods in org.springframework.batch.item.json.builder with parameters of type JsonObjectMarshallerModifier and TypeMethodDescriptionJsonFileItemWriterBuilder.jsonObjectMarshaller
(JsonObjectMarshaller<T> jsonObjectMarshaller) Set theJsonObjectMarshaller
to use to marshal objects to json.